Back to Models
Google
Gemini 2.5 Flash Image
Gemini 2.5 Flash Image from Google — 1M-token context, multimodal vision, function calling.
Released
Try in PlaygroundContext Window
1.0M
tokensHow much text the model can consider at once — your prompt plus its reply.
Max Output
66K
tokensThe most tokens the model can generate in a single response.
Input
$0.30
per 1M tokensCost per 1 million input tokens you send to the model.
Output
$2.50
per 1M tokensCost per 1 million output tokens the model generates.
Provider & Routing
Maker
Google
Served on
Google Vertex AI
NemoRouter is a managed gateway — one API key, no provider accounts to set up. We route your traffic to this model's hosting cloud and fail over automatically if it degrades.
Capabilities
Vision
Function Calling
Streaming
JSON Mode
System Prompt
Tool Use
More from Google
Quick Start
curl
# Cache: enabled (org default). Pass nemo_cache: false to skip.
# Use -i to see cost + guardrails in response headers:
# x-nemo-request-cost: 0.00347
# x-nemo-guardrails-applied: pii-detection,prompt-injection
# nemo_cache: pass "nemo_cache": false in body to skip cache
curl https://api.nemorouter.ai/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $NEMOROUTER_API_KEY" \
-d '{
"model": "gemini-2.5-flash-image",
"temperature": 1,
"max_tokens": 1024,
"messages": [
{"role": "user", "content": "Hello! What models do you support?"}
]
}'Replace sk-nemo-... with your NemoRouter API key. Use gemini-2.5-flash-image as the model identifier.
Try in Playground
Paste your NemoRouter virtual key and send a real request to Gemini 2.5 Flash Image right now — no signup required.
Test it
Prompt
cURL
curl https://api.nemorouter.ai/v1/chat/completions \
-H "Authorization: Bearer $NEMOROUTER_API_KEY" \
-H "Content-Type: application/json" \
-d '{"model":"gemini-2.5-flash-image","messages":[{"role":"user","content":"Hello!"}]}'