Credits & Billing
How plans, credits, and metered usage work.
Everything an agent consumes — model tokens, compute time, metered capabilities like image generation — draws down credits. A plan grants a monthly allowance and sets what you can reach; top-up packs add one-off credits that do not expire with the month.
Prices and allowances below come from the live catalogue. Confirm the current
numbers with GET /v1/billing/catalog, which needs no credential.
Plans
| Plan | Price | Monthly credits | Model tiers | Computers | Concurrent runs |
|---|---|---|---|---|---|
| Free | $0 | — | fast, standard, local | — | 2 |
Builder (plus) | $20 | 5,000 | + frontier | 1 agent, 1 running · starter, standard | 4 |
Pro (pro) | $50 | 15,000 | + frontier | 3 agents, 2 running · + performance | 8 |
Scale (max) | $150 | 50,000 | + frontier | 10 agents, 5 running · + GPU | 16 |
entitlements is the one to check in code — it resolves your plan into the
concrete limits the platform enforces:
Top-ups
One-time packs, with a volume bonus on the larger ones.
| Pack | Price | Credits |
|---|---|---|
small | $10 | 4,000 |
medium | $50 | 22,000 |
large | $100 | 48,000 |
Credits
The ledger is append-only: every debit names what consumed the credits, so a surprising bill is traceable to a run.
Gifting and campaigns
What costs credits
| Consumption | Notes |
|---|---|
| Model tokens | Priced per provider and model tier |
| Compute time | Billed while a cloud computer is awake — sleeping storage is not |
| Metered capabilities | Image generation, transcription, and similar |
| Heartbeat runs | Each beat is a full run |
Bringing your own provider key moves token spend onto your provider bill instead of your credits — see bring your own key.
Keeping spend down
- Match the model tier to the job. A
fastmodel answers routine turns fine. - Sleep computers when the work finishes:
agc computer sleep --agent <id>. - Widen heartbeat intervals. Hourly is usually plenty; every minute is 60× the cost for the same day.
- Pass
operationIdon metered calls so a retry does not bill twice. - Watch
agc usage agentsbefore, not after, the invoice.
Usage reporting
Per-session usage is the fastest way to find the conversation that ate the month.
Invoices and payment methods
Payments run through Stripe. Agent Commons stores no card details.
Credits are the platform's own accounting unit. They are unrelated to the USDC an agent holds in its wallet, which is real on-chain money the agent spends on external paid services.
