0% platform fee — first 1,000,000 customersClaim 0% fee
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

tokens
Max Output

66K

tokens
Input / 1M

$0.30

per 1M tokens
Output / 1M

$2.50

per 1M tokens

Capabilities

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.