Quick Start

Three steps: buy a plan → create a subscription API key → configure your coding tool.

1. Buy a Plan

  1. Open the subscription page and choose a Lite / Pro / Max tier and a monthly, quarterly, or yearly period.
  2. Click subscribe and complete the payment as guided.
  3. The subscription takes effect immediately after payment; the Coding Plan entry appears in the console, showing plan status and usage across the three windows.
Buying again while a subscription is still active queues the new subscription to start when the current period ends — no remaining time is lost.

2. Create a Subscription API Key

  1. Go to Console → Coding PlanAPI Keys.
  2. Click create and immediately copy the full cp_live_ key.
export SILVAMUX_CP_API_KEY="cp_live_YOUR_KEY"

Subscription-dedicated endpoints (OpenAI compatible and Anthropic compatible):

https://www.silvamux.com/api/coding-plan/v1
cp_live_ keys can only call /api/coding-plan/v1 endpoints; using them on regular endpoints returns 403 CODING_PLAN_KEY_NOT_ALLOWED. Likewise, sk_live_ keys cannot call the subscription endpoints.

3. Connect a Model

Configure the API key and Base URL in your AI tool to call Coding Plan models. Choose your tool for the full setup steps:

Common configuration: Base URL https://www.silvamux.com/api/coding-plan/v1 and API Key cp_live_ (subscription-only); see Developer Guide for endpoints and protocols.

4. Verify a Call

curl https://www.silvamux.com/api/coding-plan/v1/chat/completions \
  -H "Authorization: Bearer $SILVAMUX_CP_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "deepseek-v4-pro",
    "messages": [{"role": "user", "content": "Write a quicksort"}]
  }'

The available model list can also be queried via GET /api/coding-plan/v1/models. The list is filtered by the subscribed plan's available-model configuration; when the plan does not restrict models, all models are returned.