FAQ
Plans and models
What do plan benefits include?
Beyond the points quota, each tier offers a different model range and built-in capabilities (web search, embedding, image understanding, code execution, and more). See Pricing & Benefits for tier differences and how they are metered.
Are plan models the same as regular models?
The callable set follows the Model Plaza and your selected plan; the call formats are identical to regular endpoints (both the OpenAI Chat Completions and Anthropic Messages protocols).
Access and API keys
How do I use plan built-in capabilities such as web search?
They share the subscription endpoint and cp_live_ key with model calls, invoked through the OpenAI- or Anthropic-compatible interfaces under /api/coding-plan/v1 — no separate credential is needed. See Developer Guide for setup and examples.
Can cp_live_ keys call regular endpoints?
No. Subscription keys can only call endpoints under /api/coding-plan/v1; using them on regular endpoints (such as /api/v1/chat/completions) returns 403 CODING_PLAN_KEY_NOT_ALLOWED. Conversely, regular sk_live_ keys are rejected by the subscription endpoints.
Quota and billing
How do the three quota windows relate?
The 5-hour rolling window, the weekly window, and the monthly window are all enforced at once. When any window is exhausted, calls return 429 QUOTA_EXCEEDED, and the error message identifies the window (5h / weekly / monthly). The 5-hour window recovers as time slides; the weekly and monthly windows reset when they expire.
Do Coding Plan calls participate in discounts?
No. Subscription calls are charged points at the model's configured unit price; organization and pricing-group discounts do not apply. Discounts on the token-balance side are unaffected.
Can I check my subscription quota?
Yes. The console Coding Plan page shows the remaining quota, recovery time, and recent consumption of all three windows. You can also query from your own code with a cp_live_ key:
GET /api/coding-plan/v1/subscription— your current plan (period, entitlements, product configuration).GET /api/coding-plan/v1/usage/current— consumption of the three quota windows, aggregated across all organization members (the limit shown is the per-user entitlement).
Additionally, GET /api/coding-plan/v1/models confirms available models (filtered by the subscribed plan's configuration; all models when unrestricted).
Subscription management
What happens if I buy again before my subscription expires?
The new subscription stacks automatically: it starts when the current period ends, its quota becomes available from the new period, and existing subscriptions are never overwritten or lost.
How do I unsubscribe?
Subscriptions are one-time payments that do not auto-renew. When a period ends the subscription simply expires — no manual cancellation is needed.