Plans
| Free | Developer | |
|---|---|---|
| Price | $0 | $29 / month |
| Tokens per billing period | 15,000,000 | 65,000,000 |
| Concurrent sessions | 3 | 10 |
| Resets | Monthly, on your signup day-of-month | Monthly, on your subscription’s billing date |
Token and concurrency allowances are subject to change. Read the live values from the API (below) rather than hard-coding the numbers in your integration.
Usage and limits
There are two independent allowances, each with its own meter.Token usage
Tokens are consumed by the model as your agents run, and they accrue against your plan’s per-period allowance. The allowance resets at the start of each billing period: for Free plans on your signup day-of-month, and for Developer plans on your subscription’s renewal date. Check your current token usage withGET /api/v2/quota/tokens:
Response
| Field | Type | Description |
|---|---|---|
limit | integer | null | Tokens allowed this period. null means unlimited. |
used | integer | null | Tokens used so far this period. null if the usage figure is momentarily unavailable. |
remaining | integer | null | Tokens left (max(limit - used, 0)). |
window_start | string | Start of the current billing period (UTC). |
window_end | string | null | End of the current billing period (UTC). |
Concurrent sessions
Separately from tokens, your plan caps how many sessions can run at once. A session holds a slot while it is in a non-terminal state and frees it as soon as it finishes. Check your concurrency usage withGET /api/v2/sessions/quota, and see Rate limits for the full behavior, including the 429 Too Many Requests response when you create a session while at your limit.
Managing your subscription
- Upgrade to Developer. Start a subscription from the billing page in the platform dashboard. Checkout is card-only.
- Update payment details and invoices. Manage your card and download invoices through the Stripe billing portal, linked from the same billing page.
- Cancel. Cancelling stops the renewal; your Developer allowances stay active until the end of the current billing period, after which the org reverts to the Free plan.