explainx.ainewsletter3.5k
TrendingNewsPathwaysSkills
Pricing
explainx.ai

Upskill in AI — 16 free pathways, live workshops & bootcamps, and 50+ courses from practitioners. Plus the skills, tools, and MCP servers to practice on.

follow us

corporate training

support@explainx.ai

get started

Find your pathTake Free Evaluation

learn

pathways — start freeworkshopsbootcampscoursescertificationsmock testsexplainx universitycorporate traininglearn skills & mcp

discover

skillsmcp serversexplainx mcptoolsagentsllmsdesignsdictionaryagi trackerranks

company

aboutvisionmissionteaminstructorscommunityhackathonscareers

content

daily AI newsstate of AI — live resultsblogreleasespromptsgeneratorsresource libraryfor LLMsexplainx.ai kids

solutions

all solutionsdeveloper upskillingmarketing upskillingproduct manager upskillingleadership upskilling

newsletter · weekly

Get AI news, tools, and insights in your inbox.

supportprivacytermsdata rightshow we create contentsubmission guidelines

© 2026 AISOLO Technologies Pvt Ltd

On this page

  • The pizza analogy
  • What Tibo actually measured
  • Why tokenizers differ at all
  • The reply that mattered: weekly limits are a token story too
  • Even a corrected comparison misses the real question
  • How to actually compare model costs
  • Related on explainx.ai
← Back to blog

explainx / blog

Why "Price Per Token" Doesn't Tell You What a Model Actually Costs

A model with a lower $/M token price can still produce a bigger bill, because different tokenizers encode the same text into different token counts. Tibo''s viral pizza analogy, explained with real numbers.

Aug 17, 2026·8 min read·Yash Thakker
AI PricingTokensAPI CostsModel ComparisonAI Fundamentals
go deep
Why "Price Per Token" Doesn't Tell You What a Model Actually Costs

An OpenAI price card says $5 per million input tokens. Anthropic's says $2 per million. Simple enough — Anthropic is cheaper, right? Not necessarily. OpenAI's Tibo Sottiaux, who works on Codex and ChatGPT, posted a comparison on August 16, 2026 that got 673,500+ views making the opposite case: a token from one model isn't the same unit as a token from another, so comparing prices per token across models can be comparing the wrong thing entirely.

This matters directly for anyone choosing between models on explainx.ai or building an agent harness that routes across providers — the sticker price per million tokens is not the same as the price per unit of work.

Weekly digest3.5k readers

Catch up on AI

Curated AI updates on agents, skills, and MCP — delivered to your inbox. Unsubscribe anytime.

The pizza analogy

Tibo's framing, in his own words:

"Imagine two identical pizzas. One is cut into 8 slices at $2 each. The other is cut into 16 slices at $1.25 each. The second place advertises cheaper slices, but the whole pizza costs $20 instead of $16. Bummer... your stomach doesn't actually care about the number of slices you just ate."

table · 3 cols
8-slice pizza16-slice pizza
Price per slice$2.00$1.25
Slices to eat the whole pizza816
Total cost$16$20

The 16-slice pizza looks cheaper on the menu board — 37.5% cheaper per slice — and costs 25% more overall, because it takes twice as many slices to eat the same pizza. Tokens work the same way. A model that tokenizes text into more, smaller pieces can charge less per piece and still bill you more for the same document.

What Tibo actually measured

Tibo ran a small comparison spanning English, technical, multilingual, and numerical text through two tokenizers:

table · 2 cols
ModelTokens used for the same text
GPT-5.6 Sol (OpenAI)766
Claude Opus 5 (Anthropic, estimated)~1,170

That's a 34.5% difference in token count for identical content. If both models charged the exact same price per million tokens, the Opus 5 request would still cost roughly 53% more than the Sol request, purely from tokenizer differences — before either model's actual $/M rate enters the comparison at all.

A follow-up reply from developer Kunal Chaturvedi tested the effect at scale: running 150 Lorem Ipsum paragraphs through 16 different tokenizers pulled from Hugging Face. Using Tibo's own $2/M vs. $1.25/M example prices, the less token-efficient ("red") tokenizer worked out to $0.053 for the batch versus $0.031 for the more efficient ("blue") one — a ~70% higher cost, even though red's headline price per token was only 60% higher than blue's.

Why tokenizers differ at all

A tokenizer is the model-specific system that breaks text into the chunks a model actually processes and bills — see explainx.ai's guide to what LLM tokens are for the mechanics. Different labs train different tokenizers, with different vocabulary sizes and different rules for splitting words, code, whitespace, and non-English text. The practical result:

  • English prose tokenizes fairly similarly across most modern tokenizers, but not identically.
  • Code, technical notation, and rare identifiers can tokenize very differently — a tokenizer with a smaller vocabulary breaks unfamiliar strings into more, shorter pieces.
  • Non-English languages often show the widest gaps, since most tokenizers are still trained on English-majority corpora and encode other languages less efficiently.
  • Numbers and structured data (dates, IDs, tables) are a common source of unexpected token bloat, depending on how a tokenizer chunks digit sequences.

This is the same underlying mechanic covered in explainx.ai's full token-pricing breakdown — the $5-input/$30-output sticker price is only one half of the actual cost formula. Tibo's post supplies the other half: the token count itself isn't standardized across models, so the same sticker price can produce very different real-world bills depending on which model is doing the counting.

Most modern tokenizers use some variant of byte-pair encoding (BPE) or a related subword scheme: the training process starts from individual characters or bytes and repeatedly merges the most frequent adjacent pairs into single tokens, building up a fixed vocabulary (commonly somewhere in the tens of thousands to low hundreds of thousands of entries). A larger vocabulary can represent more common words and phrases as single tokens, which tends to make prose more token-efficient — but it also makes the model larger and more expensive to train and serve, so labs make different tradeoffs. A vocabulary trained mostly on English GitHub repos and English web text will represent common English words efficiently and fall back to shorter, more numerous fragments for anything outside that distribution — non-Latin scripts, rare technical terms, unusual variable names, or heavily numeric data. That's the mechanical reason two labs' tokenizers can diverge by 30%+ on the same input: they were built from different training corpora with different vocabulary sizes and different merge rules, not from any shared standard.

A worked example

Take a hypothetical 100,000-token document (measured on Tokenizer A) that a less efficient Tokenizer B renders as 140,000 tokens for the identical text — a 40% gap, in the range Tibo's and Chaturvedi's examples both landed in. At $3 per million input tokens on Model A and $2.20 per million on Model B — Model B looks 27% cheaper on the price card — the real bill comes out to $0.30 for Model A versus $0.308 for Model B. The "cheaper" model is actually slightly more expensive once its tokenizer's real output is priced in, and that gap widens further if Model B's output tends to run more verbose by default, compounding the token-count disadvantage on the pricier output side of the bill.

The reply that mattered: weekly limits are a token story too

Not every reply agreed the pizza math was the whole picture. Developer James Findsout pushed back with a related, practical complaint: "However you try to spin it codex weekly limits have got so much worse... These days the weekly limits last a day or so." That's a useful reminder that token efficiency and usage-limit generosity are two separate levers — a more token-efficient model can still leave you rate-limited faster if the underlying weekly allowance shrinks, a dynamic explainx.ai has tracked in detail on the Claude usage limits timeline and the Codex vs. Claude Code rate-limit comparison. Tokenizer efficiency changes how far your allowance stretches; it doesn't change the size of the allowance itself.

Even a corrected comparison misses the real question

Tibo's own conclusion goes a step further than "adjust for tokenizer differences and you're done":

"Even correcting for tokenizer differences misses the bigger point. What actually matters is price per successful outcome, and for that you can use benchmarks as a starting point, but really you have to try it and measure on your own use cases."

Two models can tokenize identically and still differ wildly on cost per completed task, because:

  • One model might need more turns or retries to get a coding task right, multiplying its effective token spend regardless of its tokenizer.
  • One model might produce longer, more verbose output by default for the same prompt, independent of tokenizer efficiency.
  • Reasoning tokens, when a model uses hidden chain-of-thought that still bills, can dwarf tokenizer-level differences entirely — see the reasoning-token billing section of explainx.ai's pricing guide.

How to actually compare model costs

  1. Don't trust the $/M sticker price alone. Treat it as one input, not the answer.
  2. Run your own representative text through each model's tokenizer before comparing prices — most providers expose a tokenizer tool or a usage field in the API response that reports the real count.
  3. Multiply out the full request, not just input tokens — see the base cost formula for input, output, caching, and reasoning tokens combined.
  4. Benchmark on your own use case. Public benchmarks are a starting point, not a substitute — a model that's cheaper on a generic coding benchmark can still be pricier on your specific codebase's token profile.
  5. Track cost per completed task, not cost per API call. A model that fails a task and needs a retry effectively doubles its real price regardless of its tokenizer or its sticker rate.

Related on explainx.ai

  • GPT-5.6 Sol "50% Off" on OpenRouter: Promo, Not a Price Cut — another sticker-price trap: a router promo badge that isn't a real OpenAI price change
  • AI Token Pricing, Explained Without the Pricing-Page Fog — the full input/output/caching cost model
  • What Are LLM Tokens? — how tokenizers actually chunk text
  • Claude Usage Limits in 2026: Every Change Explained — weekly caps, separate from per-token pricing
  • Claude Code vs. Codex: Rate Limit Boost — the usage-allowance side of this same debate
  • Anthropic's Sonnet 5 Pricing Made Permanent — a live example of a $/M rate holding steady
  • DeepSeek V4 Prices Just Went Up — another current pricing comparison across providers
  • Choose Open-Weight vs. Closed AI Models — cost is one factor among several in that decision

Figures reflect Tibo Sottiaux's August 16, 2026 X post and its top replies, as of publication. Tokenizer output for a given text can change if a provider updates its tokenizer, so treat the specific counts above as a snapshot, not a permanent benchmark — measure your own text on the current tokenizer before budgeting.

Spotted something out of date? Let us know.
Yash Thakker

Written by

Yash Thakker

Yash is an AI expert with over 300K learners. Join his workshops →

Related posts

Jul 26, 2026

AI Token Pricing, Explained Without the Pricing-Page Fog

A $5/$30 model is not a $35 model. This evergreen guide turns token price cards into a complete cost model for chats, apps, RAG, and agents.

Aug 11, 2026

Anthropic Makes Claude Sonnet 5 Pricing Permanent at $2/$10

On August 11, 2026, Anthropic announced that Claude Sonnet 5's introductory pricing is now permanent — $2 per million input tokens and $10 per million output tokens, with the planned September 1 increase canceled. The reaction on X was less gratitude than arithmetic: rivals are cheaper per token and, by third-party measurement, dramatically cheaper per completed task.

Aug 6, 2026

DeepSeek Warns of a "Significant" API Price Increase — No Numbers Yet

DeepSeek posted a notice warning developers of a "significant" upcoming API price increase, with no exact rates or dates disclosed. It follows days of reported record token volume that likely strained serving capacity — here's what it means for anyone budgeting around DeepSeek's rock-bottom rates.