Back to Models
Vertex AI
Gemini 2.5 Flash Image
Gemini 2.5 Flash Image from Google — 1M-token context, multimodal vision, function calling.
Released
Context Window
1.0M
tokensMax Output
66K
tokensInput / 1M
$0.30
per 1M tokensOutput / 1M
$2.50
per 1M tokensCapabilities
Vision
Function Calling
Streaming
JSON Mode
System Prompt
Tool Use
Pricing Comparison
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,
"top_p": 1,
"messages": [
{"role": "user", "content": "Hello! What models do you support?"}
]
}'Replace sk-nemo-... with your Nemo Router API key. Use gemini-2.5-flash-image as the model identifier.