Docs Developers Sign in ← Site
Docs / Storage API

Errors & limits

Errors are returned as JSON with an error field and a matching HTTP status.

Status codes

StatuserrorMeaning
200 / 201Success.
400invalid_pathThe object path was empty or malformed.
401unauthorizedMissing or wrong secret.
403forbiddenThe key lacks the required scope (e.g. no write).
404not_foundNo object at that path.
413too_largeObject exceeds the per-object size cap.
507quota_exceededThe write would exceed the key's quota (live keys only).

Limits

  • Object size — up to 256 MB per object. Split larger data into parts.
  • Quota — live keys count against your plan; a full key returns 507. Test keys are quota-free.
  • Scopesread, write, delete; enforced per request.
Heads upTreat 507 quota_exceeded as a signal to upgrade the plan or prune old objects — writes will keep failing until there is room.