Skip to main content
GET
Account API
Use GET /v1/account from production workers, autoscaling, or dashboards. Authenticate with the same API key you use for POST /v1/run/....
This is the only account endpoint you need for server integrations. No Console login or JWT required.

Authentication

OpenAI / Gemini SDKs may use Bearer with the same key value. In the Try it playground, paste your key — Mintlify adds the Key prefix automatically.

GET /v1/account

Response fields

string
required
Organization that owns this API key.
string
required
ID of the key used for this request.
string
required
live or test.
object
required
Human-readable org / key / customer info for your integration UI.
object
required
{ id, name } — organization display name.
object
{ id, name, prefix, scopes } — key metadata (secret is never returned).
object
{ id, email, name } — account owner tied to the organization.
object
required
USD wallet balances (strings with 6 decimal places).
string
required
Total wallet balance in USD.
string
required
Pre-held for in-flight runs.
string
required
Spendable now = balance − reserved.
string
required
Lifetime spend for this organization.
object
required
Organization-wide parallel run limits.
number
required
Max parallel runs for the org (tier-based).
number
required
Runs currently using slots.
number
required
Remaining slots before 429. Backoff when 0.
string
required
Volume tier name, e.g. starter, scale.
object
Limits for this API key only.
object
Only present when an admin has set a per-key HTTP cap. Default: unlimited.

Full example

curl

GET /v1/account/keys

Per-key concurrency for all active keys in the organization:

When to poll