Get account
Returns the account resolved from the bearer API key, including current platform credit balance and billing mode.
Responses
Account details
{
"id": "string", // Public account identifier resolved from the API key.
"name": "string" | null,
"email": "string" | null,
"creditBalance": 123, // Current prepaid platform credit balance in USD.
"billingMode": "standard" | "unlimited_grant", // Billing mode for the account. Unlimited-grant accounts are not blocked or charged by prepaid credit balance.
"fileStorage": {
"usedBytes": 123, // Current file storage usage in bytes, counted from live file records.
"quotaBytes": 123, // Base file storage quota in bytes.
"isEnforced": true, // Whether file storage quota enforcement applies to this account.
},
"checkpointStorage": {
"usedBytes": 123, // Current checkpoint storage quota usage in bytes, measured as cumulative active checkpoint deltas. Shared parent/base image layers are excluded when the parent manifest is available.
"quotaBytes": 123, // Base checkpoint registry storage quota in bytes.
"isEnforced": true, // Whether checkpoint registry storage quota enforcement applies to this account.
},
"createdAt": "2026-03-25T09:30:00.000Z",
}Missing or invalid API key
{
"error": {
"code": "string",
"message": "string",
"[key: string]": "value",
},
}