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.
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
| Code | Meaning |
|---|---|
| 401 | Invalid or missing API key. |
| 403 | The 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"
]
}