Gemini Deep Think Pricing and the Hidden Cost of Thinking Tokens
June 30, 2026I shipped a feature last month that quietly tripled my model bill, and it took me two days to figure out why. The output was fine. The prompts were short. The traffic was flat. The culprit was something I never used to pay for: the model was thinking, and I was getting invoiced for every internal token it burned before it ever said a word to the user.
That is the part of the latest reasoning-model wave nobody puts on the marketing slide. So when the new Gemini Deep Think pricing showed up in the news this week, I stopped scrolling. This is the thing that actually changes how I build, more than any benchmark chart.
What actually changed this week?
Google put a real price tag on extended reasoning. According to the late-June roundups, pricing is estimated at $2.50 input per million tokens in standard mode, with Deep Think at approximately 4x the standard. Read that twice. The "thinking" tier is not a feature toggle that costs the same as a normal call. It is a separate, multiplied rate.
For most of the last two years, reasoning felt free. You flipped on a "high effort" mode, the answer got better, and the bill looked roughly the same because nobody was breaking out the hidden chain of thought as a line item. That era is closing. Reasoning is becoming a metered resource, and the meter runs fast.
Why does thinking cost more than a normal answer?
Because the model produces a mountain of tokens you never see. When a reasoning model "thinks," it generates a long internal scratchpad: hypotheses, dead ends, self-corrections, verification steps. That scratchpad is real compute. It is real GPU time. And it gets billed, usually at output-token rates, even though the user only ever sees the three-sentence conclusion at the end.
So a question that returns 200 visible tokens might have chewed through 8,000 invisible ones. With a flat model you could eyeball your cost from the response length. With Deep Think you cannot, because the expensive part is the iceberg under the waterline. A 4x rate on top of token counts that can balloon 20x is not a small adjustment. It is a different cost model wearing the same API.
Is the 4x premium ever worth it?
Sometimes, and I want to be specific about when, because "use it for hard problems" is useless advice.
It earns its keep when a wrong answer is expensive and a human would otherwise have to redo the work: migrating a gnarly schema, reconciling financial records, planning a multi-step refactor, debugging a race condition from logs. In those cases the model's extra thinking replaces an hour of my own, and I will happily pay 4x on a few thousand tokens to skip that.
It is a waste everywhere else, which is most places. Summarizing a support ticket, classifying an email, extracting fields from a form, answering an FAQ. None of that needs a model to deliberate. Routing those through a deep-reasoning tier is like hiring a forensic accountant to split a dinner check. You are paying for cognition the task does not require.
The trap is convenience: it is easier to point your whole app at one powerful model than to build routing logic, and that laziness is exactly what the premium pricing punishes.
How do I keep reasoning from torching my budget?
A few habits that have actually saved me money:
- Route by difficulty, not by default. Send the boring 90% to a cheap, fast, non-reasoning model. Reserve Deep Think for the requests that genuinely fail without it. Even a dumb heuristic on input length or task type beats sending everything to the expensive tier.
- Cap the reasoning, not just the output. Most reasoning APIs now expose a thinking budget or effort knob. Set it. A model told it can think for 1,000 tokens will not wander for 10,000. Treat it like a timeout, because that is what it is.
- Cache aggressively. If users ask overlapping questions, prompt caching and result caching let you pay for the expensive thinking once instead of per request.
- Log the hidden tokens. Whatever you do, instrument reasoning-token usage as its own metric. If you only watch visible output, you are blind to the line item that will actually blow up your invoice.
So what is the bigger picture here?
The same week this pricing landed, the news was also full of governments wiring AI into real workflows. The reports note that the California pilot is one of several government AI adoption programs in June 2026, alongside the earlier reported California AI Clerk program and Ohio's AI-assisted benefits eligibility system. That is the demand side: serious, high-stakes, high-volume use. Pricing reasoning as a premium is the supply side catching up to it.
Here is my honest take: metered thinking is good for us, even though it stings. Free reasoning trained a generation of developers to throw a giant model at every problem and call it architecture. A price tag forces the discipline we should have had anyway, knowing which requests need deliberation and designing systems where the expensive thinking is the exception, not the default.
The teams that win the next year will not be the ones using the smartest model. They will be the ones who know exactly when not to.