Skip to main content

Account Snapshot

Read your Talonic workspace account snapshot with GET /v1/account: Plan, status, credit balance, monthly allowance, API-tier daily limits, and usage today.

GET /v1/account returns a self-serve snapshot of your Talonic workspace: its Plan (the tier field) and status, your credits (balance, currency, and, on the Free plan, the monthly allowance and reset date), the per-namespace daily_limits, and usage_today. It is the single call an agent or dashboard reads to understand how much headroom is left before hitting a limit or running out of credits.

Credits are the unit of spend, governed by your Plan. The credits.balance is what remains; monthly_allowance and tier_resets_at are populated for metered Free-plan workspaces and null for paid Plans. The daily_limits are a separate axis: per-namespace throughput ceilings set by your API tier (extract, platform, ingest, operations), and usage_today is how much of each you have consumed since midnight UTC.

GET/v1/account

Response

Response fields

tierstringThe workspace Plan (e.g. free, pro). Also selects the API tier that sets the daily throughput ceilings.
statusstringAccount status (e.g. active).
email_domainstring | nullEmail domain associated with the workspace.
created_atstring | nullISO 8601 timestamp of workspace creation.
credits.balancenumberRemaining credit balance.
credits.currencystringCredit currency (EUR).
credits.monthly_allowanceinteger | nullFree-plan monthly credit grant (null for paid Plans).
credits.tier_resets_atstring | nullWhen the Free-plan allowance resets (null for paid).
daily_limitsobjectPer-namespace daily ceilings from the API tier (extract, platform, ingest, operations). `-1` means unlimited.
usage_todayobjectPer-namespace requests made today (UTC).

curl

Response (200 OK)

{
  "tier": "free",
  "status": "active",
  "email_domain": "acme.com",
  "created_at": "2026-03-02T09:14:00.000Z",
  "credits": {
    "balance": 4820,
    "currency": "EUR",
    "monthly_allowance": 5000,
    "tier_resets_at": "2026-08-01T00:00:00.000Z"
  },
  "daily_limits": {
    "extract": 1000,
    "platform": 2000,
    "ingest": 1000,
    "operations": 1000
  },
  "usage_today": {
    "extract": 42,
    "platform": 118,
    "ingest": 7,
    "operations": 3
  }
}
A daily_limits value of -1 means unlimited (the Enterprise API tier). Plan and API tier are different axes: the Plan governs billing and credits, while the API tier governs throughput. Free-plan spend is governed by the monthly credit grant, not the daily ceilings — the ceilings exist purely as abuse protection. See [Rate Limits](rate-limits).