Google's AI Price Cut Has a 141-Day Return Policy
On August 13, 2026, Google cut Gemini Flash's price in half: $0.75 per million input tokens, $3.75 per million output, down from $1.50 and $7.50. Google's own pricing page also names the exact day that rate expires: January 1, 2027, 141 days after launch, when it snaps back to $1.50 and $7.50 β the identical price Gemini 3.6 Flash launched at three weeks earlier. Every number below is sourced directly from Google's announcement and model card.
TL;DR
- π·οΈ The headline priceβ Gemini 3.7 Flash launched August 13, 2026 at $0.75 per 1M input tokens and $3.75 per 1M output, half of Gemini 3.6 Flash's $1.50/$7.50 launch price from three weeks earlier.
- π The date almost nobody ranβ that rate is labeled introductory. Google's pricing page puts the expiration at January 1, 2027, 141 days after launch, when input returns to $1.50 and output to $7.50.
- π The retroactive cutβ Google didn't just price the new model low. It moved Gemini 3.6 Flash, already shipping, onto the same $0.75/$3.75 rate the same day β and onto the same January 1 expiration.
- π The loopβ zoom out on 3.6 Flash alone: $1.50/$7.50 at launch (Jul 21) β $0.75/$3.75 (Aug 13) β $1.50/$7.50 again (Jan 1, 2027). The exact price it started at, five and a half months later.
- π° The mathβ at 10M input and 10M output tokens a day, that's $45/day today and $90/day from January 1, with zero change in usage or code.
- π Not a downgradeβ the benchmark gains are real: DeepSWE v1.1 up 16.3 points, AutomationBench up 13.4, GDP.pdf up 12, FrontierCode 1.1 up 9.2, WebDev Arena up 50 Elo. The pricing clock is a separate lever from the capability gain.
The 50%-off headline everyone ran
Google's own announcement post frames Gemini 3.7 Flash as βour most intelligent workhorse model,β and the pricing line is the part every summary led with: $0.75 per million input tokens and $3.75 per million output, effective at launch on August 13, 2026. That is exactly half of what the model it replaces, Gemini 3.6 Flash, cost at its own launch three weeks earlier β $1.50 input, $7.50 output, announced July 21, 2026. Coverage across the trade press ran variations of the same story: Google's new workhorse model is smarter and half the price.
Jul 21, 2026
3.6 Flash launch
$1.50 / $7.50
Aug 13, 2026
3.7 Flash intro price
$0.75 / $3.75
Jan 1, 2027
Standard rate resumes
$1.50 / $7.50
Both of those numbers are accurate. Neither one is the full price. Google's own pricing page, cited in the same announcement, labels the $0.75/$3.75 rate introductoryand gives the date it stops applying: January 1, 2027. Count the days from launch and that's 141. Not a vague βprices subject to changeβ disclaimer β a specific calendar date, published on day one, sitting two clicks from the price everyone quoted.
Nothing else about the model changes at that date. The 1 million token input context window, the customizable thinking configurations for trading off quality, cost, and latency, the 64K token output ceiling β all of that is identical on January 1, 2027 to what shipped on August 13, 2026. The only variable on a timer is the two numbers on the rate card, and the countdown started running the moment the βhalf priceβ headlines did.
The retroactive repricing nobody flagged
Here is the detail that didn't make the launch-week coverage. Google didn't just price the new model cheap. It reached back and cut Gemini 3.6 Flash's price too, the same day, to the exact same $0.75 input and $3.75 output. Same weights, same model, nothing shipped or changed about the model itself β only a new price tag, applied retroactively to a model that had been generally available for three weeks.
| Model | Before Aug 13, 2026 | After Aug 13, 2026 | From Jan 1, 2027 |
|---|---|---|---|
| Gemini 3.6 Flash | $1.50 in / $7.50 out | $0.75 in / $3.75 out | $1.50 in / $7.50 out |
| Gemini 3.7 Flash | n/a (not yet launched) | $0.75 in / $3.75 out | $1.50 in / $7.50 out |
That's not a new-model discount. It's a repricing of the entire Flash tier, timed to a launch, applied to a model that shipped weeks earlier without a single change to its capability. Both models carry the identical introductory window and the identical expiration date.
It also means any team that started building on Gemini 3.6 Flash the week it launched has now lived through a mid-life 50% price cut on a model they didn't touch, and they're about to live through a 100% price increase on the same model without touching it again. Cost dashboards built by pulling a static per-token rate at integration time and never revisiting it will silently drift wrong twice on the same model, in opposite directions, without a single deploy in between.
Zoom out on 3.6 Flash alone, and it's a loop
Isolate Gemini 3.6 Flash's pricing history from the rest of the announcement and the shape is unmistakable. It launched at $1.50 input, $7.50 output, on July 21. Three weeks later, on August 13, that dropped to $0.75 and $3.75. On January 1, 2027, per Google's own pricing page, it returns to $1.50 and $7.50 β the exact number it launched at, five and a half months earlier.
Zoomed out, this isn't a price cut. It's a 141-day discount window on a price that was always scheduled to come back β and the number every headline reported was the temporary one.
What the countdown costs, in real traffic
Run the two rates against a workload instead of a headline. A team pushing 10 million input tokens and 10 million output tokens a day β a modest but real production agent load β pays $45.00 a day at the introductory rate: (10 Γ $0.75) + (10 Γ $3.75). On January 1, 2027, with identical traffic and zero code changes, the same workload costs $90.00 a day: (10 Γ $1.50) + (10 Γ $7.50). The bill doubles because a calendar date arrived, not because usage changed.
Daily cost at 10M input + 10M output tokens/day
Calculation: published Google rates, applied to a fixed 10M/10M token-per-day workload.
# flash_cost.py β daily cost before and after the Jan 1, 2027 reset
INPUT_TOK_PER_DAY = 10_000_000
OUTPUT_TOK_PER_DAY = 10_000_000
intro_rate = {"input": 0.75, "output": 3.75} # per 1M tokens, through Dec 31, 2026
standard_rate = {"input": 1.50, "output": 7.50} # per 1M tokens, from Jan 1, 2027
def daily_cost(rate):
return (INPUT_TOK_PER_DAY / 1_000_000) * rate["input"] + \
(OUTPUT_TOK_PER_DAY / 1_000_000) * rate["output"]
print(f"Today: ${daily_cost(intro_rate):.2f}/day")
print(f"Jan 1, 2027: ${daily_cost(standard_rate):.2f}/day")$ python flash_cost.py
Today: $45.00/day
Jan 1, 2027: $90.00/day
β OK: same traffic, same code, same model
β FIX: budget models built on this week's rate card understate 2027
spend by exactly 2x from day 1 of the fiscal yearThe capability gain is real, and it's a separate story
None of this makes Gemini 3.7 Flash a worse model quietly repriced. The benchmark deltas Google published against 3.6 Flash are substantial: DeepSWE v1.1 climbs from 49.0% to 65.3%, a 16.3-point jump. AutomationBench nearly doubles, from 17.0% to 30.4%. GDP.pdf rises 12 points, FrontierCode 1.1 gains 9.2, long-context recall on GDM-MRCR v2 improves from 91.8% to 97.0%, and the model's WebDev Arena Elo rating climbs 50 points, from 1538 to 1588.
Gemini 3.6 Flash vs. 3.7 Flash, selected benchmarks
Source: blog.google, Aug 13, 2026 launch announcement; deepmind.google model card.
That distinction matters for how to read the whole announcement. The capability jump and the pricing decision are two independent levers. One reflects real engineering progress on the model. The other is a promotional window with a fixed, published end date. Treating the second as if it were the first β a durable, permanent price β is the mistake the launch-week coverage made by omission.
Why January 1 isn't a random date
The expiration date lines up with something specific: January 1 is day one of the fiscal year, and the infrastructure budget, for most companies that don't run on a custom fiscal calendar. Any team pricing out 2027 AI spend this week, using this week's rate card, is building next year's number on a price that is contractually scheduled to disappear before the first invoice of that fiscal year even arrives. The gap isn't small β it's exactly 2x, on the traffic-cost math above, and it lands on the first day most budgets get locked.
It's worth being precise about what is and isn't known here. Google hasn't published a stated reason for choosing January 1 specifically, and nothing in the announcement claims the date was picked to align with budget cycles. What's verifiable is narrower and doesn't require guessing at intent: the date is real, it is 141 days out, and it coincides with when most organizations finalize the following year's spend. Whether that's deliberate or incidental, the effect on anyone budgeting off this week's number is the same either way β the number they're budgeting with stops being true on the first day of the year they're budgeting for.
Every AI price worth budgeting against has two numbers: the rate, and the date it stops being the rate. Google published both, in the same announcement, on the same day. Most of the coverage only carried the first one forward.
What this means if you're modeling 2027 spend today
The practical fix is simple and almost nobody does it by default: when a rate card is quoted as introductory, promotional, or launch-week, pull the expiration date before building a cost model on top of it β not just the number, the date the number stops being true. For Gemini Flash specifically, that means modeling two numbers for 2027, not one: $45/day worth of traffic through December 31, 2026, and $90/day worth of the exact same traffic starting January 1. A model swap or a routing change made in December, once the real 2027 rate is visible instead of the introductory one, is a much cheaper fix than discovering the gap in a January invoice.
That kind of comparison is exactly what routing infrastructure is for. MegaBrainroutes to 500+ models, including every Gemini Flash tier, through one API at transparent, zero-markup pricing β so when a rate resets, the fix is a routing change, not a rewrite, and the real, current price is always the one your bill reflects, not the one from launch week. For AI agents that need to keep working through a pricing reset without anyone watching the calendar, mhermes, MegaBrain's always-on agent runtime, runs unattended on a schedule you set, not on the promotional window a vendor happens to be offering this month.
Sign up at getmegabrain.com to route your agents at cost, or spin up a mhermes agent to track the next pricing reset before it hits your invoice.
MegaBrain Gateway
500+ models. One API. No markup.
Use in Claude Code, Cline, Cursor, or any coding agent.
Newsletter
Stay in the loop
Get the latest model comparisons and guides β no spam, unsubscribe anytime.