Everything you need to go from zero to uploading files on IPFS in minutes.
Follow these three steps to be up and running immediately.
Create an account
Visit the registration page and fill in your email and a password. You will immediately receive a generated API key — save it securely.
Retrieve your API key
Log in and navigate to your dashboard. Your API key is displayed there; click to copy it.
Upload your first file
Use the Upload page in the app, or send a request directly to the API (see the cURL example below).
Registration is free and requires only an email address and password.
/register.API Key Visibility
Upload a file using the web interface or directly via the API.
curl -X POST https://your-domain.com/api/v1/files/upload \
-H "X-API-Key: YOUR_API_KEY" \
-F "file=@/path/to/your/file.pdf"A successful response returns the file's CID:
{
"status": 201,
"message": "File uploaded successfully",
"data": {
"cid": "bafkreih5aznjvttude6c3wbvqeebb6rlx7kibuzn7i56aklrbb2a5v53em",
"original_filename": "file.pdf",
"size": 204800,
"pinned": true,
"uploaded_at": "2026-03-14T12:00:00Z"
}
}Tip
Your API key authenticates every request to the IPFS Gateway API.
X-API-Key header for every authenticated endpoint.Key Rotation