Quick Start
Three steps: buy a plan → create a subscription API key → configure your coding tool.
1. Buy a Plan
- Open the subscription page and choose a Lite / Pro / Max tier and a monthly, quarterly, or yearly period.
- Click subscribe and complete the payment as guided.
- 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
- Go to Console → Coding Plan → API Keys.
- Click create and immediately copy the full
cp_live_key (shown only once).
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. Configure Your Coding Tool
Claude Code
export ANTHROPIC_BASE_URL="https://www.silvamux.com/api/coding-plan/v1"
export ANTHROPIC_AUTH_TOKEN="cp_live_YOUR_KEY"
Restart Claude Code and you are ready.
Cursor
In Settings → Models → OpenAI API Key, configure:
- Base URL:
https://www.silvamux.com/api/coding-plan/v1 - API Key:
cp_live_YOUR_KEY
Cline (VS Code extension)
Choose the OpenAI Compatible or Anthropic provider:
- Base URL:
https://www.silvamux.com/api/coding-plan/v1 - API Key:
cp_live_YOUR_KEY
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.