Skip to main content
GET
Get credit balance
Read your organization’s current credit balance and billing cycle without opening the dashboard. On an async-only workload this saves you a billable sync /v1/monitor/* request made only to read the X-Credits-Remaining header. Poll it to alert your team before you run out, and to pause task submission when the balance is too low to cover the next batch.

Response fields

Example usage

Read your current balance

Low-balance alerts and a submission breaker

Every task is checked against your live balance when it’s charged, so this read is a guardrail rather than a ledger. remaining counts completed charges only — it does not net out work you have already queued, so subtract your own outstanding creditsToCharge before sizing the next batch. To attribute exact cost per task, use the creditsCharged field on the task status response instead.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

Current credit balance and billing cycle.

remaining
integer
required

Credits currently remaining for your organization.

Example:

48210

perCycle
integer | null
required

Credits granted per billing cycle. Null for free-tier organizations with no active subscription.

Example:

1562500

cycleResetsAt
string<date-time> | null
required

When the current billing cycle ends and credits reset. Null for free-tier organizations with no active subscription.

Example:

"2026-08-10T17:35:27.000Z"