Pricing & Billing
Docs-depth version of the pricing page. Full formula, rate cards, and billing mechanics.
Billing tiers at a glance
| Tier | Price | Agents | Actions / mo | Key features |
|---|---|---|---|---|
| Free | $0 | 3 | 10,000 | Local identity, Console + File sinks, community support |
| Startup | $49 / mo | 10 | 100,000 | Credential brokering, full dashboard, APISink, email support |
| Growth | $149 / mo | 50 | 1,000,000 | SSO/OIDC, owner attribution, audit log export, priority support |
| Enterprise | Custom | Unlimited | Unlimited | Custom SLA, dedicated support, custom data retention |
Overage rates (Startup + Growth)
| Item | Overage rate |
|---|---|
| Additional agent / month | $0.50 |
| Additional 1,000 actions | $0.005 |
What counts as an agent?
Any unique agent_name that has called spineforge.init() and produced at least one action in the billing period. Test agents (e.g. agent_name="test") count if they emit actions. Agents that are registered but produce zero actions in a period are not counted.
What counts as an action?
One LLM call or tool invocation captured by the OTel span pipeline. If your agent makes 3 LLM calls per user query, that's 3 actions. Tool calls decorated with @track_tool or auto-captured by a framework instrumentor each count as one action. Spans silently ignored by the span processor (HTTP, framework internals) do not count.
How cost is computed — the formula
For each LLM call action:
cost_usd = (prompt_tokens / 1000) × cost_per_1k_prompt_tokens
+ (completion_tokens / 1000) × cost_per_1k_completion_tokens
# Stored as NUMERIC(14,8) — precision to sub-centCost is computed once, at write time, using the rate card in effect at that moment. It is stored on the action row and never recomputed. See Metrics Reference for the full step-by-step pipeline.
Billing period and invoicing
- Billing periods are calendar months (UTC).
- Startup and Growth tiers: monthly flat rate billed at the start of each period, overages billed at end of period.
- Enterprise: invoiced per custom agreement.
- Free tier: no payment method required.
Data retention
| Tier | Run / Action data retention |
|---|---|
| Free | 30 days |
| Startup | 90 days |
| Growth | 1 year |
| Enterprise | Custom |
Next steps
- Pricing page — interactive estimator and tier comparison
- Metrics Reference — how every cost figure is computed