Credit balance
Get the organization’s current credit balance. Every amount comes in two forms: precise decimillicents (10,000,000 = $1) and ready-to-display dollars, so you never have to convert. Check the available amount before paid operations like publishing or live analytics reads; if it runs out mid-publish, the failure shows up as per-account errors. For the itemized ledger behind the balance, use getCreditHistory.
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Organization id (UUID). Discover ids via the list organizations endpoint or the agent context.
Response
Success
Total credit balance in decimillicents (10000000 = $1), including credits currently reserved by in-flight operations.
200000000
Credits in decimillicents currently held by in-flight reservations (e.g. pending publishes or AI calls).
20000
Spendable credits in decimillicents: balance minus reserved.
199980000
creditsBalanceDecimillicents expressed in dollars (decimillicents / 10,000,000), for display without unit conversion.
20
reservedCreditsDecimillicents expressed in dollars.
0.002
availableDecimillicents expressed in dollars: what the org can spend right now.
19.998
True when the org is blocked from new credit-consuming operations: either suspended (usage cap exceeded, open dispute) or inside an unresolved failed-payment grace period.
ISO 8601 timestamp of when the org was suspended, or null when the org is healthy.
"2026-06-10T14:32:00Z"
ISO 8601 end of the current failed-payment grace period, or null when there is no unresolved payment failure; only a successful payment clears it, wall-clock expiry does not unblock the org.
"2026-06-17T14:32:00Z"