Gemini 3.6 Flash on QuickSilver Pro
Gemini 3.6 Flash is Google's current general-purpose Flash GA model with a 1M-token context window. QuickSilver Pro serves it through one OpenAI-compatible endpoint at $1.275 input / $6.375 output per million tokens, 15% below Google's $1.50/$7.50 list price.
At a glance
The recommended Gemini Flash for new production integrations.
Pricing comparison ($/1M tokens)
| Provider | Input | Output | vs QSP |
|---|---|---|---|
| QuickSilver Pro | $1.275 | $6.375 | lowest-cost |
| Google list price (google/gemini-3.6-flash) | $1.50 | $7.50 | 15% lower |
| OpenAI (GPT-4o) | $2.50 | $10.00 | 36% lower |
When to use
Default to Gemini 3.6 Flash for production chat, multimodal analysis, coding, agent turns, and long-context workloads that need current Flash quality and GA stability.
When to use something else
For high-volume classification and extraction where price matters more than reasoning depth, use Gemini 3.5 Flash-Lite. For harder flagship reasoning, use Gemini 3.1 Pro Preview after evaluating preview stability.
Quickstart (curl)
curl https://api.quicksilverpro.io/v1/chat/completions \
-H "Authorization: Bearer $QSP_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "gemini-3.6-flash",
"messages": [{"role": "user", "content": "Hello!"}]
}'OpenAI-compatible. One-line migration via base_url.
FAQ
Yes. Keep the preview ID only while you migrate existing integrations. New workloads should use gemini-3.6-flash, Google's current GA Flash model.
It costs $1.275 input and $6.375 output per 1M tokens, 15% below Google's $1.50/$7.50 list price.
Yes. Point the OpenAI SDK at https://api.quicksilverpro.io/v1 and set model to gemini-3.6-flash.