AI Agents Passed Humans in Token Usage. The Model They Picked Costs 167x Less Than GPT-5.5.
OpenAI is on pace to lose $14 billion in 2026, spending $1.35 to $2 for every $1of revenue it books. In the same stretch, the fastest-growing category of AI usage β agents, not humans β quietly defected to a model priced 55 to 167 times cheaper. This is what the actual OpenRouter usage data shows, with every number sourced.
TL;DR
- π The crossoverβ on Feb 1, 2026, tokens burned by AI agents passed tokens burned by humans typing into chat, for the first time ever.
- π Agents are ravenous β an agentic task burns roughly 15xthe tokens of one human chat message; 55% of one frontier model's requests now invoke a tool, used 83% of the time once invited.
- πΈ The price gapβ GPT-5.5 charges $5/$30 per million tokens (in/out). DeepSeek's V4-Flash charges $0.09/$0.18 β 55x and 167x cheaper, respectively.
- π¨π³ The receiptsβ Chinese open-weight models went from ~39% to 66%+ of OpenRouter tokens between January and early April 2026; one April week saw 12.96T tokens (China) vs 3.03T (US).
- π₯ DeepSeek is #1β its OpenRouter token share went 9% (Jan) β 5% (Feb-Mar trough) β ~20% (June), the single most-used model on the platform since mid-May. 70% of its agentic traffic runs on V4-Flash alone.
- π OpenAI's mathβ $3.7B revenue and a $5B loss in 2025; a projected $14B loss in 2026; $1.35-$2 spent per $1 of revenue booked.
The crossover nobody scheduled
For three years, the AI industry's central argument was about intelligence: whose model scores highest on which benchmark. That argument is still happening. But underneath it, a second, much larger market has been building β not people typing into chat boxes, but software calling models on its own, in loops, without anyone reading each response. On February 1, 2026, that second market passed the first. Tokens burned by AI agents overtook tokens burned by humans, for the first time ever.
Human vs. agentic share of OpenRouter tokens, Nov 2025 β May 2026
Source: OpenRouter, 'State of AI: An Empirical 100 Trillion Token Study' (2026); SaaStr interview with OpenRouter COO.
That crossover is not a rounding artifact. OpenRouter's COO put it bluntly in a recent interview: the platform now processes roughly 28 trillion tokens a week, and βif your forecast still models AI spend like people typing into a box, your forecast is wrong.β The 100-trillion-token empirical study behind that claim analyzed every request on the platform from January 1 to June 14, 2026 β over 450 trillion tokens in total.
Why agents are ravenous
The reason the crossover happened so fast is that agentic tasks do not behave like chat messages. A human sends one message and reads one answer. An agent plans, calls a tool, reads the result, decides whether to call another tool, and repeats β often a dozen or more times per task. OpenRouter's data puts the multiplier at roughly 15x more tokens per agentic task than per human chat message.
Inside one frontier model's production traffic
Source: OpenRouter / frontier model provider traffic analysis, cited in SaaStr's OpenRouter COO interview, 2026.
This is the same shift MegaBrain customers describe anecdotally: the moment an LLM call moves from a chat UI into a loop β a coding agent, a research agent, a support agent that resolves rather than replies β token volume per βtaskβ stops looking like a chat log and starts looking like a batch job. And batch jobs are brutally price-sensitive in a way a single premium chat response never was.
The price gap that becomes the whole P&L at agent scale
Here is where the frontier-pricing model runs into trouble. GPT-5.5 charges $5 per million input tokens and $30 per million output tokens. DeepSeek's V4-Flash charges $0.09 in and $0.18 out β per OpenRouter's published pricing as of June 2026.
| Model | Input $/1M tok | Output $/1M tok | vs. GPT-5.5 |
|---|---|---|---|
| GPT-5.5 | $5.00 | $30.00 | baseline |
| DeepSeek V4-Flash | $0.09 | $0.18 | 55x / 167x cheaper |
At human chat volume, that gap barely shows up in a monthly bill. At agentic volume β 15x the tokens per task, run in production, around the clock β the same gap stops being a rounding error and becomes the entire line item. Run the arithmetic on a single day of agentic traffic and the difference is stark enough to change which model gets picked by default, not by taste, but by whoever is watching the invoice.
# agent_cost_gap.py β 1 day of agentic traffic, two pricing tiers
HUMAN_TOKENS_PER_TASK = 1_000 # baseline unit
AGENT_MULTIPLIER = 15 # OpenRouter: ~15x tokens per agentic task
TASKS_PER_DAY = 200_000 # a mid-size production agent fleet
tokens_per_day = HUMAN_TOKENS_PER_TASK * AGENT_MULTIPLIER * TASKS_PER_DAY
# assume a 3:1 output:input ratio typical of tool-calling loops
input_tokens = tokens_per_day * 0.25
output_tokens = tokens_per_day * 0.75
pricing = {
"GPT-5.5": (5.00, 30.00),
"DeepSeek V4-Flash": (0.09, 0.18),
}
for name, (p_in, p_out) in pricing.items():
cost = (input_tokens / 1e6) * p_in + (output_tokens / 1e6) * p_out
print(f"{name:20s} ${cost:>10,.0f}/day")$ python agent_cost_gap.py
GPT-5.5 $ 78,750/day
DeepSeek V4-Flash $ 492/day
β OK: same 200k-task agent fleet, 160x cost gap end to end
β FIX: this is exactly the gap OpenRouter's usage data shows agents
resolving on their own β no human approves it call by call, code
just routes to whichever model clears the price barThe receipts: what the usage data actually shows
None of this would matter if it were theoretical. It isn't β OpenRouter's request logs show the market already voting with tokens. Chinese open-weight models held roughly a third of OpenRouter's token volume in January 2026. By late February they had crossed 61%, and by early April they held a clear majority, with one week processing 12.96 trillion tokens against 3.03 trillionfor every US model combined β a 4x gap in a single week.
Open-weight share of OpenRouter tokens, by origin
Source: OpenRouter weekly token logs, via CEIBS analysis, 'How China Overtook the US in AI Token Usage.'
One model did an outsized share of that work. DeepSeek held about 9% of all OpenRouter tokens in January, briefly dropped to 5% during the initial agentic surge in February and March β when demand outran its capacity β then climbed back to roughly 20% by June, making it the single most-used model on the platform since mid-May. Zoom into just its agentic traffic, and 70% of it runs on one variant: V4-Flash.
DeepSeek's share of total OpenRouter tokens, 2026
Source: OpenRouter Insights, 'DeepSeek V4 Is Earning Agentic Token Share.'
Nobody approves that routing decision one call at a time. It is code, choosing on price and latency, over and over, at machine scale β which is exactly why the shift shows up so cleanly in aggregate usage data and so rarely in any single company's press release.
What the benchmark makers now measure
Even the people who build AI benchmarks have noticed where the volume is. Artificial Analysis's Intelligence Index v4.1 β the industry's most widely cited composite model ranking β now weights βAgentsβ (GDPval-AA v2 and πΒ³-Banking) at 34%of a model's overall score, ahead of Coding and Scientific Reasoning at 24% each and General knowledge at 18%. Agent performance is no longer a side benchmark; it is the single largest input into how βsmartβ a model is considered to be.
Artificial Analysis Intelligence Index v4.1 β category weights
Source: Artificial Analysis, Intelligence Benchmarking Methodology, v4.1.
OpenAI's math doesn't survive contact with this
Which makes OpenAI's unit economics the other half of the story. The company generated an estimated $3.7 billion in revenue in 2025 against an estimated $5 billion loss β a cost-to-revenue ratio of roughly 1.35x, meaning it spent $1.35 to bring in every $1. Internal projections reportedly put the 2026 loss at $14 billion, en route to cumulative losses near $115 billion through 2029 before any path to profitability.
| Metric | 2025 | 2026 (projected) |
|---|---|---|
| Revenue | $3.7B | β |
| Loss | $5B | $14B |
| Spend per $1 of revenue | $1.35 | $1.35β$2 |
That structure was built to sell quality β a premium chat experience β to a customer who weighs quality and pays for it. Agentic buyers are not that customer. They are code with a budget and a timeout, indifferent to brand or benchmark slide, routing to whichever model clears a price and latency bar. The faster agentic volume grows relative to human chat, the more of the market OpenAI's current pricing model is structurally unable to retain β not because its models are worse, but because the buyer evaluating them no longer reads the marketing page. It reads the invoice.
If you want to build your own agent-economics dashboard
The agent_cost_gap.pysnippet above is a simplified single-fleet model. A production version would pull live pricing per model, your own agent fleet's actual token multiplier, and re-run the comparison on a schedule β the same pattern an always-on research agent uses for any recurring cost audit.
That is the kind of task a BrainClawagent is built for β it runs on its own isolated VM with shell access, scheduling, and persistent memory, so it can pull fresh OpenRouter or provider pricing on a cron job and flag when the gap between your current model and a cheaper alternative crosses a threshold you set. And when you are ready to actually route agentic traffic to the cheapest model that clears your quality bar, MegaBraingives one API across 500+ models with transparent, at-cost pricing β so switching from a frontier model to a 55-167x cheaper one for agentic workloads is a config change, not a migration project.
Sign up at getmegabrain.com to route your agent fleet at cost, or spin up a BrainClaw agent to keep watch on the price gap in this piece long after the numbers move again.
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.