Googlegemini-3.8-flash
Gemini 3.8 Flash
Fast multimodal reasoning for coding and agents.
Gemini 3.8 Flash is Google's fast multimodal model, pairing reasoning and tool use with a million-token context — built for coding and agentic work that has to keep up.
- Agentic work
- Coding
- Multimodal
Model details
- Context window
- 1.0M tokens
- Max output
- 66K tokens
- Input
- Text, images
- Output
- Text
- Capabilities
- Reasoning, Vision, Tool calling, Streaming, JSON output
- Interfaces
- OpenAI-style Chat Completions, Anthropic-style Messages, OpenAI-style Responses
Pricing
Per 1M tokens. The Inferray price is what you are charged — no gateway fee is added on top of it.
| Metric | List price | You pay |
|---|---|---|
| Input | $0.75 | $0.64 |
| Cached input | $0.07 | $0.06 |
| Output | $3.75 | $3.19 |
Why teams pick it
- Fast multimodal reasoning for coding and agents
- 1M-token context with vision, audio, and document input
- Reasoning effort, tool calling, and JSON output included
Call Gemini 3.8 Flash
Gemini 3.8 Flash answers on any of the APIs below — pick the one your code already speaks and just swap in your Inferray key.
/v1/chat/completionsOpenAI-style Chat Completions · openai SDK or plain HTTP
curl https://api.inferray.com/v1/chat/completions \
-H "Authorization: Bearer inferray_..." \
-H "Content-Type: application/json" \
-d '{
"model": "gemini-3.8-flash",
"messages": [{"role": "user", "content": "ship it"}]
}'/v1/messagesAnthropic-style Messages · @anthropic-ai/sdk SDK or plain HTTP
curl https://api.inferray.com/v1/messages \
-H "Authorization: Bearer inferray_..." \
-H "Content-Type: application/json" \
-d '{
"model": "gemini-3.8-flash",
"max_tokens": 1024,
"messages": [{"role": "user", "content": "ship it"}]
}'/v1/responsesOpenAI-style Responses · openai SDK or plain HTTP
curl https://api.inferray.com/v1/responses \
-H "Authorization: Bearer inferray_..." \
-H "Content-Type: application/json" \
-d '{
"model": "gemini-3.8-flash",
"input": "ship it"
}'