Volver a las guías
Pricing·8 de junio de 2026·Actualizado el 3 de septiembre de 2026·8 min de lectura

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 alongside Kunavo's rates at about 70% less — 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: Google's official per-token list price for each current Gemini model, side by side with what the same model costs on Kunavo, plus worked cost examples you can sanity-check and the cheapest way to call Gemini in production. Gemini is among the best value in frontier AI, and Kunavo prices it about 70% below Google's list rate behind one OpenAI-compatible API.

Rates last verified September 3, 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

Rates are 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.

ModelInput / 1MOutput / 1MGoogle list (in / out)You save
gemini-2-5-flash$0.09$0.75$0.30 / $2.50~70%
gemini-2-5-pro$0.375$3.00$1.25 / $10.00~70%
gemini-3-6-flash$1.05$5.25$1.50 / $7.50 list*~30% vs 2027 list*

*Gemini 3.6 Flash (released July 2026) is the current generation and needs an honest asterisk: Google is running an introductory rate of $0.75 / $3.75 through December 31, 2026, before it reverts to the $1.50 / $7.50 list price on January 1, 2027. During the intro window Google direct is cheaper than Kunavo's $1.05 / $5.25 for this one model — if that raw rate is all you need, take it. Kunavo's case is the single OpenAI-compatible key, Stripe billing with no Google Cloud account, and one balance that also covers Claude, GPT and the image/video models; from 2027 the price is ~30% under Google's list again.

Flash is the high-volume workhorse; Pro is for harder reasoning, vision and long-context jobs. Live rates always show on the pricing page and each model page (gemini-2-5-flash, gemini-2-5-pro, gemini-3-6-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 row which uses Gemini 2.5 Pro:

WorkloadTokens (in / out)ModelCost
Chatbot turn1,000 / 300Flash$0.0003
RAG answer8,000 / 500Flash$0.0011
Batch classify (per doc)500 / 20Flash$0.00006
Long-context analysis20,000 / 2,000Pro$0.0135

At those rates a 100,000-document classification batch on 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. 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-2-5-flash — default for chat, extraction, classification, summarization and most RAG. Fast and the cheapest capable option.
  • gemini-2-5-pro — reach for it when Flash is not accurate enough: multi-step reasoning, code, vision and very long context.

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. Cap output. Set max_tokens and stop sequences — output is the pricey side of the meter.
  3. Trim input. Retrieve fewer, better RAG chunks instead of stuffing the whole knowledge base into context.
  4. 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 3, 2026, Google's official list price per 1M tokens is $0.30 input / $2.50 output for Gemini 2.5 Flash and $1.25 / $10.00 for Gemini 2.5 Pro, published at ai.google.dev/gemini-api/docs/pricing. The same models on Kunavo are $0.09 / $0.75 and $0.375 / $3.00 — about 70% and 70% under Google's list respectively.

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 2.5 Pro API cost?

On Kunavo, Gemini 2.5 Pro API pricing is $0.375 per 1M input tokens and $3.00 per 1M output tokens — about 70% below Google's $1.25 / $10.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. Google's own rate is an introductory $0.75 / $3.75 through December 31, 2026, rising to the $1.50 / $7.50 list price from January 1, 2027 — so during the intro window Google direct is cheaper for this one model, and from 2027 Kunavo is about 30% under list. Kunavo's draw is one OpenAI-compatible key with Stripe billing, no Google Cloud account, and the same balance covering Claude, GPT and image/video models.

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, 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.