Help / Pricing
Codens bills in credits (CCU), with 1 credit = ¥0.01. 1 input token = 1.5 credits, 1 output token = 7.5 credits, and a per-model multiplier (Haiku 0.2x / Sonnet 1.0x / Opus 5.0x) scales with task complexity.
A typical AI fix consumes 80,000–125,000 credits (Sonnet baseline, 3-Retry average).
| Plan | Monthly | Credits | Notes |
|---|---|---|---|
| Free Trial | Free | 30,000 credits (valid 14 days) | No credit card required. ≈ 0.4 AI fixes. |
| Hobby | ¥3,000 / mo | 300,000 credits / mo | ≈ 3–4 AI fixes. Red / Blue / Green supported. |
| Pro | ¥10,000 / mo | 1,000,000 credits / mo | ≈ 12–13 AI fixes. Red / Blue / Green / Yellow supported. |
| Business | ¥50,000 / mo | 5,000,000 credits / mo | ≈ 60–70 AI fixes. Full suite + SLA. |
| Enterprise | Custom | Unlimited | On-prem inference (in-house GPUs) optional. For finance / healthcare / government. |
GET https://api.auth.codens.ai/.well-known/pricing.json
Accept: application/json
// Returned via BCP (5-minute cache, static fallback on BCP outage)
{
"version": "1",
"currency": "CCU",
"initial_credit_grant": 1000,
"tiers": [
{
"name": "default",
"credit_per_workflow_run": 10,
"credit_per_mcp_call": 1,
"monthly_quota": null
}
],
"rate_cards_url": "https://bcp.codens.ai/api/v1/rate_cards"
}From an agent, you can also fetch it via the MCP tool: auth_agent({ action: "get_pricing" }).
Initial credit grant
The grant given to a new organization is driven by BCP configuration (the current default lives in initial_credit_grant above). The landing page Free Trial advertises 30,000 credits (14 days). If marketing numbers drift from the JSON, the JSON values are canonical (BCP can update them on the fly).