Gemini 3.6 Flash
GoogleTextReasoningToolsVision
Gemini 3.6 Flash: the same family as 3.5 at half the upstream price - coding, agents and multimodal work.
Our price
$0.64 / $3.19
input / output per 1M
Official
$0.75 / $3.75
−15% vs officialFirst request
from openai import OpenAI
client = OpenAI(
base_url="https://api.altrouter.ai/v1",
api_key="ar-...",
)
resp = client.chat.completions.create(
model="gemini-3.6-flash",
messages=[{"role": "user", "content": "Hello!"}],
)
print(resp.choices[0].message.content)API
OpenAI-compatible chat completions endpoint, with SSE streaming.
POST
/v1/chat/completionsBody parameters
Structured fields (tools, response_format, stop and more) are in the full parameter reference.
Response
Example
Errors