We are running an IPFS-Cluster with the following endpoints publicly available:
-
IPFS-Gateway
-
IPFS-Cluster
-
https://api.ipfs.lukso.network
/api/v0/add -
https://api.ipfs.lukso.network
/api/v0/block -
https://api.ipfs.lukso.network
/api/v0/get -
https://api.ipfs.lukso.network
/api/v0/dag/put -
https://api.ipfs.lukso.network
/api/v0/object/data -
https://api.ipfs.lukso.network
/api/v0/object/get
-
You can use the website bellow to manually upload files to LUKSO IPFS:
- https://anarkrypto.github.io/upload-files-to-ipfs-from-browser-panel/public/
- Node address:
api.ipfs.lukso.network
- API Port:
443
- Gateway Port:
443
Then click on "Node online" to connect to the node
The IPFS API endpoints mentioned above are public and do not require an API key.
Keep in mind the available endpoints are limited to the ones mentioned above. Should you require an additional endpoint, feel free to open an issue here on github, and we can look into it.
import ipfsClient from "ipfs-http-client";
const ipfs = ipfsClient({
protocol: "https",
host: "api.ipfs.lukso.network",
port: 443,
});
If you require more in-depth examples, head over to the IPFS docs.
By default, there is one environment available:
- Production aka
prod
They both are located on the same cluster, each within their own namespace (prod
).
If you would like to setup a cluster from scratch, checkout out the setup instructions.