Create an account, generate a key and secret in one click, and start storing objects. UK-hosted, encrypted at rest, and failover-backed — a write succeeds while any node is up.
Sign up → your key ID and secret are generated instantly.
# PUT any object under a path you choose curl -X PUT https://app.cloudbox.biz/api/v1/objects/backups/db.sql.gz \ -H "Authorization: Bearer $CLOUDBOX_SECRET" \ --data-binary @db.sql.gz
curl https://app.cloudbox.biz/api/v1/objects/backups/db.sql.gz \
-H "Authorization: Bearer $CLOUDBOX_SECRET" -o db.sql.gzEnter the 6-digit code we sent to .
You'll use this to sign in to your dashboard.
Authenticate every call with Authorization: Bearer <secret>. Objects live under a private namespace per key.
| Method | Path | Does |
|---|---|---|
| PUT | /api/v1/objects/{path} | Store (or overwrite) an object at {path}. |
| GET | /api/v1/objects/{path} | Download the object. |
| DELETE | /api/v1/objects/{path} | Delete it and free the space. |
| GET | /api/v1/objects?prefix= | List objects under a prefix. |
| GET | /api/v1/whoami | Key label, scope, quota and usage. |
Scopes: read, write, delete.
Test-mode keys write to an isolated sandbox and never count against your quota.
Generate a key, copy the secret once, and start calling. Roll or revoke any time.
Your endpoint, ready to paste. Set CLOUDBOX_SECRET to a secret you generated.
Add this MCP URL in Claude, ChatGPT or any MCP app: