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.
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:
Claude CodeAI terminal coding assistant with natural-language programmingOpenCodeOpen-source AI coding agentCursorAI-native code editorCodexOpenAI command-line coding toolZCodeAgentic development environment for long-horizon tasksTRAEAI-powered IDE with chat, completion, and agentic workflowsCodeBuddyAI-based full-cycle intelligent coding tool
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.



