Gemini 3.7 Flash

Gemini 3.7 Flash by Google AI: $0.75 input and $3.75 output per 1M tokens, 1.0M context. Call it through the odnoga LLM gateway.

ReasoningVisionToolsJSON modeStreaming

Gemini 3.7 Flash is served by Google AI and called through odnoga with the same OpenAI-compatible request shape as every other model in the catalog. It is a reasoning model, so it spends extra output tokens working through a problem before answering — budget for higher output cost on hard tasks. It accepts images alongside text. It supports tool and function calling. It can be forced to return structured JSON. Its 1.0M-token context window sets how much input you can send in one request. Cached input is billed at $0.075 per 1M tokens, so repeated prefixes cost less.

Specification and price

VendorGoogle AI
Model IDgemini-3.7-flash
Context window1.0M tokens
Max output66K tokens
CapabilitiesReasoning, Vision, Tools, JSON mode, Streaming
Your plan
Per 1M tokensVendor costYour price on Free+7%
Input$0.75$0.806
Output$3.75$4.03
Cached input$0.075$0.081

Vendor cost is the list price per million tokens as recorded in the odnoga catalog; your price applies your plan margin with the same formula that bills every request — see pricing. Pricing

Call it through odnoga

const res = await fetch("https://api.odnoga.com/v1/chat/completions", {
  method: "POST",
  headers: {
    Authorization: `Bearer ${process.env.ODNOGA_API_KEY}`,
    "Content-Type": "application/json",
  },
  body: JSON.stringify({
    model: "gemini-3.7-flash",
    messages: [{ role: "user", content: "Hello" }],
  }),
});

Same request shape for every vendor in the catalog — swap the model id and odnoga handles keys, routing, limits and cost accounting.

How to use Gemini 3.7 Flash

Reviewed 2026-09-14

Best for

  • Agentic work at scale: Google positions it as the high-efficiency workhorse of the Gemini 3 family, with strong code generation and terminal execution.
  • High-throughput production traffic where you still want reasoning.
  • Very large inputs — around a million tokens of context, including long documents and whole repositories.
  • Multimodal input: text plus images in the same request.

Not the right pick when

  • The very deepest reasoning problems, where a Pro-tier Gemini model is the intended answer.
  • Ultra-cheap bulk classification — a Flash-Lite tier costs less.
  • Workloads pinned to a preview model id, which can change; prefer a stable id for production.

Practical tips through odnoga

  1. 01Treat it as the default in a Gemini setup and escalate only what fails evaluation to a Pro tier.
  2. 02Keep the long, stable context first so context caching reduces the repeated cost.
  3. 03Send images only when they change the answer; image tokens are real tokens.
  4. 04Pin the exact model id in the managed prompt version — Google ships Flash revisions quickly, and a frozen version keeps your evaluation comparable.

What a month costs

1,000 calls a month, 10,000 input tokens and 2,000 output tokens each, at your Free price (vendor cost +7%):

Input (10M tokens)$8.06
Output (2M tokens)$8.06
Your cost per month on Free$16.13

Vendor list cost $15.00 + odnoga margin $1.13 (+7%). Cached input or answer reuse lowers it; odnoga records both numbers per request.

Gemini 3.7 Flash compared

ModelContextInput / 1MOutput / 1MCapabilities
Gemini 3.7 Flash1.0M$0.75$3.75Reasoning, Vision, Tools, JSON mode, Streaming
Gemini 2.5 Computer Use131K$1$5Vision, Tools, JSON mode, Streaming
Gemini 2.5 Flash Image (Nano Banana)33K$0.3$2.50Vision

Questions

Where does Gemini 3.7 Flash sit in the family?
Google describes it as the high-efficiency, cost-effective model of the Gemini 3 family — the primary agentic workhorse between the deep-reasoning Pro models and the high-throughput Flash-Lite tier.
Is it good for coding agents?
Google highlights code generation and terminal execution as the main gains in this release. Verify it on your own repository tasks in the evaluation laboratory before switching an agent over.
How do I compare it fairly with a Claude or GPT model?
Freeze the same test cases and run 2 to 8 models against them in odnoga. You get one table with pass rate, tokens, latency and cost per model, on your prompts rather than public benchmarks.

All models · Pricing · Docs · Compare models in the evaluation lab

Sources: Google DeepMind — Gemini 3.7 Flash model card, Google Cloud — developer guide to Gemini 3.7 Flash

One gateway, every model.