가이드 목록으로
Pricing·2026년 6월 8일·최종 업데이트 2026년 9월 12일·9분 분량

Google Gemini API pricing September 2026 — official list & per-token rates 2026

Gemini is among the best value in frontier AI. Here are the current Gemini API prices per model, verified September 2026 — Google's official list and its 3.x Flash intro rate alongside Kunavo's rates — with worked cost examples and the cheapest way to call Gemini in production.

Last reviewed on .

This is Google Gemini API pricing as of September 2026, per 1M tokens, with Google's official rate next to what the same model costs on Kunavo. Gemini 3.8 Flash, Google's newest Flash, costs $0.525 input / $2.625 output on Kunavo — 30% under the introductory $0.75 / $3.75 rate Google charges for its 3.x Flash models through December 31, 2026, before its standard $1.50 / $7.50 rate starts on January 1, 2027. Gemini 3.1 Pro is $0.70 / $4.20 against Google's $2.00 / $12.00 list and Gemini 2.5 Flash is $0.09 / $0.75 against $0.30 / $2.50 — about 65% and 70% less — all on one OpenAI-compatible API.

Rates last verified September 12, 2026. Kunavo's per-token prices below are read live from the model catalog, and the “Google list” column tracks Google's published rate — the official source is ai.google.dev/gemini-api/docs/pricing.

Official Google price list vs Kunavo — September 2026

Every Gemini API price here is per 1M tokens, in USD, as billed on Kunavo. The “Google list” column is Google's official published rate for the same model, taken from ai.google.dev on the verification date above — so this table is the official price list and the discounted one in a single view. For the Gemini 3.x Flash models that column shows the introductory rate Google charges today, and “You save” is measured against it.

ModelInput / 1MOutput / 1MGoogle list (in / out)You save
gemini-3-8-flash$0.525$2.625$0.75 / $3.75 intro*30% vs intro*
gemini-3-7-flash$0.525$2.625$0.75 / $3.75 intro*30% vs intro*
gemini-3-1-pro$0.70$4.20$2.00 / $12.00~65%
gemini-2-5-flash$0.09$0.75$0.30 / $2.50~70%
gemini-3-6-flash$1.05$5.25$0.75 / $3.75 intro*None — 40% above intro*

*Google's introductory rate for its 3.x Flash models, charged through December 31, 2026; Google's standard $1.50 / $7.50 rate for them applies from January 1, 2027.

Gemini 3.8 Flash is the Flash to call for new work, Gemini 2.5 Flash stays the cheapest high-volume option, and Pro is for harder reasoning, vision and long-context jobs. Live rates always show on the pricing page and each model page (gemini-3-8-flash, gemini-3-7-flash, gemini-3-1-pro, gemini-2-5-flash, gemini-3-6-flash).

Gemini 3.8 Flash pricing and Google's intro rate

Google charges an introductory $0.75 input / $3.75 output per 1M tokens for its Gemini 3.x Flash models — 3.6, 3.7 and 3.8 Flash — through December 31, 2026, and its standard $1.50 / $7.50 from January 1, 2027. Kunavo sells Gemini 3.8 Flash at $0.525 / $2.625 and Gemini 3.7 Flash at $0.525 / $2.625 per 1M, which is 30% under Google's intro rate today. Gemini 3.6 Flash is the exception: at $1.05 / $5.25 it costs 40% more than Google's current rate, so 3.7 and 3.8 Flash are the ones to use — both newer and cheaper.

ModelKunavo (in / out)Google today — intro, to December 31, 2026Google from January 1, 2027Kunavo vs Google today
Gemini 3.8 Flash$0.525 / $2.625$0.75 / $3.75$1.50 / $7.5030% cheaper
Gemini 3.7 Flash$0.525 / $2.625$0.75 / $3.75$1.50 / $7.5030% cheaper
Gemini 3.6 Flash$1.05 / $5.25$0.75 / $3.75$1.50 / $7.5040% more expensive

A 30% gap is real but narrower than on Gemini 3.1 Pro or Gemini 2.5 Flash, because Google is discounting 3.x Flash itself until 2027 — so compare before you assume. What Kunavo adds is one OpenAI-compatible key and one prepaid Stripe balance for Gemini, Claude, GPT and the image and video models, with no Google Cloud project. What it does not add is dedicated capacity: Kunavo is shared capacity with no dedicated quota and no contractual SLA, so if you need a guaranteed quota or an SLA, buy from Google directly.

For Gemini Flash API pricing, output is the side to watch: the 3.x Flash models are thinking models, and the reasoning they do before answering bills as output tokens. Keep max_tokens generous and budget on output including reasoning — the Gemini 3 API guide has measured reasoning-token numbers for 3.6 Flash and the code to call gemini-3-8-flash.

How Gemini API pricing works per token

You pay for input tokens (everything you send — system prompt, retrieved context, the user message) and output tokens (what the model generates). Output is the more expensive side, so the single biggest lever on a Gemini bill is how much text you let the model write. Images and audio are converted to token-equivalents and billed on the same meter.

Worked cost examples

Real numbers at Kunavo's Gemini 2.5 Flash rate, except the last two rows, which use Gemini 3.8 Flash and Gemini 3.1 Pro:

WorkloadTokens (in / out)ModelCost
Chatbot turn1,000 / 3002.5 Flash$0.0003
RAG answer8,000 / 5002.5 Flash$0.0011
Batch classify (per doc)500 / 202.5 Flash$0.00006
Agent step (output incl. reasoning)10,000 / 1,5003.8 Flash$0.0092 (Google intro: $0.0131)
Long-context analysis20,000 / 2,000Pro$0.0224

At those rates a 100,000-document classification batch on 2.5 Flash runs about $6, and a million chatbot turns about $315. The math, runnable:

gemini_cost.py
# Kunavo Gemini 2.5 Flash rates (USD per 1M tokens)
IN_RATE, OUT_RATE = 0.09, 0.75

def cost(in_tokens: int, out_tokens: int) -> float:
    return in_tokens / 1_000_000 * IN_RATE + out_tokens / 1_000_000 * OUT_RATE

print(cost(1_000, 300))            # one chatbot turn   -> $0.000315
print(cost(8_000, 500))            # one RAG answer     -> $0.001095
print(cost(500, 20) * 100_000)     # 100k-doc batch     -> ~$6.00

Kunavo pricing and Stripe billing

There is no subscription and no Google Cloud project. You top up a balance (Stripe or local payment methods), and calls draw down from it at the per-token rates above. Pay-as-you-go from a $10 minimum top-up, the balance never expires, and larger top-ups carry bonus credit. Failed requests are never billed. One balance covers Gemini and every other model — Claude, GPT, image, video and audio — so you are not reconciling a separate invoice per provider.

Which Gemini model should I choose?

  • gemini-3-8-flash — Google's newest Flash, released September 2, 2026, for agentic, coding and other reasoning-heavy work at Flash latency: $0.525 / $2.625 per 1M, 30% under Google's intro rate.
  • gemini-3-7-flash — the previous Flash release (August 13, 2026) at $0.525 / $2.625; stay on it if your prompts are already validated there.
  • gemini-2-5-flash — default for chat, extraction, classification, summarization and most RAG. Fast and the cheapest capable option, at $0.09 / $0.75.
  • gemini-3-1-pro — reach for it when Flash is not accurate enough: multi-step reasoning, code, vision and very long context.
  • Not gemini-3-6-flash, on price — at $1.05 / $5.25 it costs more than 3.7 and 3.8 Flash on Kunavo and more than Google's own intro rate; keep it only for prompts already validated on it.

A good pattern is to route by difficulty: Flash for the common case, escalate to Pro only when a check fails. See the AI cost optimization guide for the routing pattern in code, and the Claude and GPT pricing guides to compare providers.

Cutting your Gemini bill

  1. Tier down. Send the easy 80% to Flash; reserve Pro for the hard 20%.
  2. Move off 3.6 Flash. Gemini 3.8 Flash costs 50% less per token than Gemini 3.6 Flash on Kunavo, with the same OpenAI-compatible request shape — a one-word model change.
  3. Cap output. Set max_tokens and stop sequences — output is the pricey side of the meter.
  4. Trim input. Retrieve fewer, better RAG chunks instead of stuffing the whole knowledge base into context.
  5. Batch. Group independent calls to keep latency down and avoid retry storms.

FAQ

What is Google's official Gemini API pricing in September 2026?

As of September 12, 2026, Google's official price per 1M tokens is $0.30 input / $2.50 output for Gemini 2.5 Flash and $2.00 / $12.00 for Gemini 3.1 Pro, published at ai.google.dev/gemini-api/docs/pricing. For its 3.x Flash models (Gemini 3.6, 3.7 and 3.8 Flash) Google charges an introductory $0.75 / $3.75 through December 31, 2026, rising to its standard $1.50 / $7.50 on January 1, 2027. On Kunavo the same models cost $0.09 / $0.75 for Gemini 2.5 Flash (about 70% under Google's list), $0.70 / $4.20 for Gemini 3.1 Pro (about 65% under Google's list) and $0.525 / $2.625 for Gemini 3.8 and 3.7 Flash (30% under Google's intro rate).

How much does the Gemini 3.8 Flash API cost?

On Kunavo, the Gemini 3.8 Flash API costs $0.525 per 1M input tokens and $2.625 per 1M output tokens, with reasoning tokens billed as output. Google's own Gemini 3.8 Flash pricing is an introductory $0.75 / $3.75 through December 31, 2026 and $1.50 / $7.50 from January 1, 2027, so Kunavo is 30% under what Google charges today. Gemini 3.8 Flash, released September 2, 2026, is Google's newest Flash model and is called as gemini-3-8-flash on Kunavo's OpenAI-compatible endpoint.

Is Gemini 3.8 Flash cheaper through Kunavo?

Yes. Through Kunavo, Gemini 3.8 Flash costs $0.525 / $2.625 per 1M tokens, 30% less than the $0.75 / $3.75 introductory rate Google charges directly through December 31, 2026; Gemini 3.7 Flash is the same price. The gap is narrower than on Gemini 3.1 Pro or 2.5 Flash because Google is discounting its 3.x Flash models itself until 2027. The trade for the lower price is capacity: Kunavo is shared capacity with no dedicated quota and no contractual SLA, so a team that needs a guaranteed quota or an SLA should buy from Google directly.

Is this the official Google price list?

No — Google's own page at ai.google.dev/gemini-api/docs/pricing is the official source, and it is linked at the top of this guide. This page reproduces those official list prices, states the date they were verified, and puts Kunavo's rate for the same model next to each one. Kunavo is an independent gateway that resells these models, not Google.

Is the Gemini API free?

Google AI Studio has a rate-limited free tier for prototyping. For production you pay per token. Kunavo is pay-as-you-go from a $10 minimum top-up — you pay per token at the rates below, the balance never expires, and no Google Cloud billing account is needed.

How much does Gemini 2.5 Flash cost?

On Kunavo, Gemini 2.5 Flash is $0.09 per 1M input tokens and $0.75 per 1M output tokens — roughly 70% below Google's list price of $0.30 / $2.50. A typical chatbot turn (1K in, 300 out) costs about $0.0003.

How much does the Gemini 3.1 Pro API cost?

On Kunavo, Gemini 3.1 Pro API pricing is $0.70 per 1M input tokens and $4.20 per 1M output tokens — about 65% below Google's $2.00 / $12.00 list price. Use Pro over Flash for multi-step reasoning, vision and long context.

How much does the Gemini 3.6 Flash API cost?

On Kunavo, Gemini 3.6 Flash is $1.05 per 1M input tokens and $5.25 per 1M output. That is 40% above the introductory $0.75 / $3.75 Google charges for it through December 31, 2026, so for this model Google direct is cheaper today. Gemini 3.8 Flash and 3.7 Flash are the better buy: both are newer and cost $0.525 / $2.625 on Kunavo, 30% under Google's intro rate. Google's standard Gemini 3.6 Flash rate, from January 1, 2027, is $1.50 / $7.50.

Is Gemini cheaper than Claude or GPT?

Gemini 2.5 Flash is one of the cheapest capable models anywhere — under Claude Haiku and most GPT tiers for high-volume work. Compare the full table on the pricing page.

How do I reduce Gemini API cost?

Tier to Flash, move any Gemini 3.6 Flash traffic to 3.8 Flash, cap output, trim retrieved context, and batch. Details in the cost optimization guide. To start calling Gemini, see how to get a Gemini API key.