OpenRouter → QuickSilver Pro
Two lines of code. ~20% lower on Kimi K3, Qwen 3.7 Plus, DeepSeek V4 Pro, Claude Opus 5, GPT-5.6 and Grok 4.5 — and 20% lower on DeepSeek V4 Flash. For the comparative analysis, see /vs/openrouter.
The 5 steps
- 1
Get a QuickSilver Pro API key
Sign up at quicksilverpro.io/dashboard. Launch bonus: top up between $5 and $50 and we match it 100% — pay $5, get $10; pay $50, get $100.
- 2
Change the base URL
In your OpenAI SDK init, swap the
base_url.- base_url="https://openrouter.ai/api/v1" + base_url="https://api.quicksilverpro.io/v1" - 3
Swap the API key
Replace
OPENROUTER_KEYwith your QSP key.- api_key=os.environ["OPENROUTER_KEY"], + api_key=os.environ["QSP_KEY"], - 4
Rename model IDs
Drop the
provider/prefix. The Qwen models also drop the trailing-a3bMoE-config suffix.OpenRouter QuickSilver Pro deepseek/deepseek-v4-flash-0731 deepseek-v4-flash deepseek/deepseek-v4-pro deepseek-v4-pro qwen/qwen3.7-max qwen3.7-max qwen/qwen3.7-plus qwen3.7-plus qwen/qwen3.7-flash qwen3.7-flash qwen/qwen3.6-plus qwen3.6-plus qwen/qwen3.6-35b-a3b qwen3.6-35b moonshotai/kimi-k2.6 kimi-k2.6 moonshotai/kimi-k2.7-code kimi-k2.7-code moonshotai/kimi-k3 kimi-k3 z-ai/glm-5.3 glm-5.3 z-ai/glm-5.2 glm-5.2 - 5
Test your core flows end-to-end
Run one representative request for each feature — chat, tool_calls, json_schema strict mode, streaming. Any behavioral diff is a bug — report it.
Full before/after
from openai import OpenAI
client = OpenAI(
base_url="https://openrouter.ai/api/v1",
api_key=os.environ["OPENROUTER_KEY"],
)
r = client.chat.completions.create(
model="deepseek/deepseek-v4-flash-0731",
messages=[{"role": "user", "content": "Hi"}],
)from openai import OpenAI
client = OpenAI(
base_url="https://api.quicksilverpro.io/v1",
api_key=os.environ["QSP_KEY"],
)
r = client.chat.completions.create(
model="deepseek-v4-flash",
messages=[{"role": "user", "content": "Hi"}],
)Common migration pitfalls
Other migration guides
Need help?
Email hello@quicksilverpro.io — a human replies usually within 4 hours. For the broader analysis, see QuickSilver Pro vs OpenRouter.
Start saving in 5 minutes
Launch bonus: first deposit matched 100%, up to $50 in bonus credits. Keep your OpenAI SDK unchanged — only the URL and key change.
Get API Key