OpenRouter → QuickSilver Pro
Two lines of code. ~20% cheaper on DeepSeek V4 Flash + Pro, V3, R1, Qwen 3.7 Max + 3.6 Plus + 3.6 + 3.5, and Kimi K2.6. 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 deepseek-v4-flash deepseek/deepseek-v4-pro deepseek-v4-pro deepseek/deepseek-chat deepseek-v3 deepseek/deepseek-r1 deepseek-r1 qwen/qwen3.7-max qwen3.7-max qwen/qwen3.7-plus qwen3.7-plus qwen/qwen3.6-plus qwen3.6-plus qwen/qwen3.6-35b-a3b qwen3.6-35b qwen/qwen3.5-35b-a3b qwen3.5-35b moonshotai/kimi-k2.6 kimi-k2.6 moonshotai/kimi-k2.7-code kimi-k2.7-code 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-chat",
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-v3",
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 free. Keep your OpenAI SDK unchanged — only the URL and key change.
Get API Key