Storage

Account usage summary for the calling API key

Requires scope account:manage. Returns lifetime admitted bytes, the per-account upload allowance, and file and folder counts. Deletion does not refund the allowance.

GET/api/v1/accountTry it
iNote
Requires a key with the account:manage scope, sent as Authorization: Bearer <api-key>. Keys missing the scope are rejected with 403 — see Authentication.

Errors

CodeMeaning
401Invalid or missing API key.
403The API key lacks the required scope for this operation.
cURL
curl https://gateway.kepto.xyz/api/v1/account \
  -H "Authorization: Bearer <api-key>"
200 · application/json
{
  "usedBytes": 0,
  "maxBytes": 0,
  "fileCount": 0,
  "folderCount": 0,
  "folders": [
    "string"
  ]
}