Gemini 3.1 Flash Lite Preview
Gemini 3.1 Flash Lite Preview from Google — 1M-token context, multimodal vision, function calling.
Try in Playground1.0M
tokensHow much text the model can consider at once — your prompt plus its reply.
66K
tokensThe most tokens the model can generate in a single response.
$0.25
per 1M tokensCost per 1 million input tokens you send to the model.
$1.50
per 1M tokensCost per 1 million output tokens the model generates.
Provider & Routing
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
More from Google
Quick Start
# 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-3.1-flash-lite-preview",
"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-3.1-flash-lite-preview as the model identifier.
Try in Playground
Paste your NemoRouter virtual key and send a real request to Gemini 3.1 Flash Lite Preview right now — no signup required.
Test it
curl https://api.nemorouter.ai/v1/chat/completions \
-H "Authorization: Bearer $NEMOROUTER_API_KEY" \
-H "Content-Type: application/json" \
-d '{"model":"gemini-3.1-flash-lite-preview","messages":[{"role":"user","content":"Hello!"}]}'