Pangram verdict · v3.3
We believe that this document is a mix of AI-generated, and human-written content
AI likelihood · overall
MixedArticle text · 1,740 words · 7 segments analyzed
TL;DR A "token" is not a fixed amount of text. Each vendor's tokenizer cuts the same file into a different number of pieces, and you pay per piece. So $/Mtok is not comparable across vendors. Anthropic's newest tokenizer (Sonnet 5, Opus 4.8, Fable 5) produces ~30% more tokens from the same code than their previous one. The list price did not change. On identical files, it produces 1.36-1.73x GPT's token count. TypeScript is the worst case at 1.73x. In effective terms, Opus 4.8's $5 / $25 behaves like $7.50 / $37.50, and Sonnet 5 after its intro window like $4.50 / $22.50. This measures input tokenization only. Output verbosity, thinking, and caching move whole-task bills further; details near the end. We counted the same bytes under every frontier tokenizer, using each vendor's own counting endpoints, and cross-checked the counts against real paid requests. Below are the numbers and what they do to the prices on the rate cards. Why $/Mtok is not a comparable priceA model's bill is two numbers multiplied together:cost = (tokens your content becomes) x (price per token) The pricing page shows the second number and treats the first as a constant. It is not a constant. It depends on the model's tokenizer, and tokenizers differ a lot between vendors. Two models can list the same "$5.00 / 1M input tokens" and produce meaningfully different bills for the same paragraph, because one of them turns that paragraph into more tokens. Since nobody publishes tokens-per-content numbers, we measured them. How we measured We took 16 real fixtures: English prose, an HTML page, JavaScript, Python, TypeScript and Rust files, JSON tool schemas and tool results, Chinese chat and prose, symbol-heavy text, and our own agent system prompt. Each fixture was counted, byte for byte, with every model's production tokenizer: Anthropic models were counted with the official count_tokens endpoint, which returns the same count Anthropic bills against. OpenAI models were counted with the documented o200k_base tokenizer via tiktoken.
For the newest models we double-checked this against production: we sent real API calls to GPT-5.1, GPT-5.5, and GPT-5.6 Sol and compared the live usage numbers with the local count, using a long-minus-short delta to cancel the request framing. All three matched o200k_base exactly. Gemini and Grok were counted with their providers' token-count endpoints. GPT's o200k serves as the 1.00x reference throughout, mainly because it has been frozen and publicly documented for over two years, while Claude's tokenizer is the one that changed. DeepSeek and GLM are left out of the tables entirely: we only have rough characters-divided-by-four estimates for them, not real tokenizer counts, and this post is about measured numbers. Finding 1: same list price, ~30% more tokens Claude Opus 4.6 and Opus 4.8 have the same $5.00 / $25.00 list price. What changed between them is the tokenizer. Sonnet 4.6 and Opus 4.6 use the old one; Sonnet 5, Opus 4.8, and Fable 5 use the new one. The table counts the same bytes with both, on Anthropic's own endpoint: ContentOld tokenizerNew tokenizerChangeEnglish prose (2,115 chars)476636+34%HTML page (3,195 chars)1,1311,302+15%JavaScript (1,933 chars)659794+20%Python (2,251 chars)8311,022+23%TypeScript (2,888 chars)8981,178+31%Rust (2,924 chars)1,0191,312+29%JSON
tool schema (9,948 chars)2,6313,306+26%Our agent system prompt (42,661 chars)10,76114,953+39%Chinese prose (379 chars)435433~0% Weight those rows the way a real agent request is composed, which is mostly English system prompt, tool schemas, code, and JSON, and the new tokenizer comes out around +32% per request. The Chinese row barely moved, so the inflation is concentrated in English and code. Sonnet 5's launch price, recalculated Sonnet 5 launched at $2.00 / $10.00, down from Sonnet 4.6's $3.00 / $15.00, which looked like a price cut. That is an intro price, and it ends August 31, 2026. While it lasts, the lower rate slightly more than covers the extra tokens, so Sonnet 5 works out a little cheaper than 4.6 for the same code. From September 1 the price returns to $3.00 / $15.00, the extra tokens remain, and the same work will cost about a third more than it did on Sonnet 4.6 at the same list price. Checking the counter against real billscount_tokens is a prediction, so we also sent real paid requests with max_tokens: 1 and read usage.input_tokens, which is what invoices are based on. For the same content, Opus 4.6 billed 2,541 input tokens and Opus 4.8 billed 3,191, each matching its predicted count exactly. We ran the same check on Fable 5, the most expensive model in the lineup, and it billed 3,191 as well, identical to Opus 4.8. So Fable uses the same new tokenizer and there is no extra per-token markup hidden behind its higher list price.
The whole verification cost about $0.08. Finding 2: the gap is widest on code The cross-vendor table uses GPT's o200k as the 1.00x reference. Every cell is that model's token count for the identical file divided by GPT's, so 1.20x means 20% more tokens than GPT. Claude's new and old tokenizers are shown side by side: ContentClaude (new)Claude (old)Gemini 3 FlashGrok 4.5TypeScript1.73x1.32x1.16x1.05xRust1.58x1.22x1.19x1.05xJavaScript1.52x1.26x1.23x1.11xPython1.50x1.22x1.20x1.09xHTML page1.36x1.18x1.08x1.04xEnglish prose1.40x1.05x1.01x1.00xChinese prose1.44x1.45x0.85x0.86xChinese chat1.53x1.55x0.91x0.92x The code rows sit well above the prose rows: TypeScript at 1.73x, Rust at 1.58x, JavaScript at 1.52x, Python at 1.50x, against 1.40x for English prose. Code is most of what a coding agent processes, so for that workload the 1.50-1.73x band is the relevant one. Why is TypeScript the worst case? Because o200k is unusually efficient on it: about 4.24 characters per token, which looks like the result of training on a lot of web JavaScript and TypeScript, where camelCase identifiers and JSX patterns compress into single tokens. On Rust its efficiency drops to about 3.51 characters per token. Claude's tokenizer is roughly equally dense on both languages, so the gap is widest exactly where GPT is strongest.
Chinese behaves differently. Claude sits around 1.45-1.55x above GPT with both the old and the new tokenizer (435 vs 433 tokens against GPT's 300 on the prose fixture), so this is a long-standing property of the Claude family on CJK text, not something the new tokenizer introduced. Gemini is actually more efficient than GPT here, at 256 tokens. Which tokenizer costs you more depends on what you write. What that does to the price Multiply the list price by the measured divergence and you get an effective price for processing the same work. Divergence here is the blended multiplier for a typical English coding request, normalized to GPT's o200k: ModelList pricein / out ($/Mtok)DivergenceEffectivein / out ($/Mtok)GPT-5.1$1.25 / $10.001.00x (reference)$1.25 / $10.00GPT-5.5$5.00 / $30.001.00x$5.00 / $30.00GPT-5.6 Sol$5.00 / $30.001.00x (verified)$5.00 / $30.00Grok 4.5$2.00 / $6.001.03x$2.06 / $6.18Gemini 3 Flash$0.50 / $3.001.09x$0.55 / $3.27Claude Sonnet 4.6$3.00 / $15.001.14x (old tokenizer)$3.42 / $17.10Claude Sonnet 5 (intro)$2.00 / $10.001.50x (new tokenizer)$3.00 / $15.00Claude Sonnet 5 (from Sep 1)$3.00 / $15.001.50x$4.50 / $22.50Claude Opus 4.6$5.00
/ $25.001.14x (old tokenizer)$5.70 / $28.50Claude Opus 4.8$5.00 / $25.001.50x (new tokenizer)$7.50 / $37.50Claude Fable 5$10.00 / $50.001.50x (new tokenizer)$15.00 / $75.00 A few rows are worth a second look. Opus 4.6 and 4.8 share a list price but differ by about 32% in effective price. GPT-5.5 and GPT-5.6 Sol share the tokenizer, so their identical list prices really are identical in effect. Gemini 3 Flash runs a slightly heavier tokenizer than GPT and still remains the cheapest option by a wide margin. For an independent data point: Ploy published a production migration to GPT-5.6 Sol this week and reported 1.70M input tokens against Claude Opus 4.8's 2.60M for the same builds, about 35% fewer. That is a whole-task bill rather than a tokenizer probe, so it also folds in model verbosity, but it points the same way. What the input ratio does not capture Everything above measures one thing: how many input tokens identical bytes become. A full agent task adds more variables on top, and they are big ones. How many output and thinking tokens does the model spend to reach the same result? How much context does the harness load per step? How often does it call tools or spawn subagents? How does the provider price cache reads and writes? Two consequences are worth spelling out. First, cache traffic is billed per token too, so a tokenizer that produces 32% more tokens also makes every cache write and every cache read about 32% more expensive, and on long agent sessions cache reads are most of the bill. Second, whole-task costs can diverge far more than 1.73x in either direction once verbosity and thinking are folded in.
When people report that one model "uses 2-4x the tokens" of another on agent work, that can be true for their setup even though the pure input tokenization gap in our fixtures never exceeded 1.73x. The two numbers measure different layers. By content type, the input-side range we measured for Claude's new tokenizer against GPT's o200k is: prose, HTML, and JSON at 1.36-1.42x; code at 1.50-1.73x with TypeScript on top; Chinese and symbol-heavy text at 1.44-1.53x. We put TypeScript in the title because it is both the top of the range and the thing a coding agent processes all day, not because the whole world is 1.73x. We also measured the per-task layer directly, in a follow-up: the same nine models given one identical drawing task, one shot each, with every attempt priced from the providers' own usage numbers. The same drawing ranged from $0.004 to $0.80 depending on model and reasoning effort, and maximum effort made three models fail to finish at all. That experiment is here: The Pelican Benchmark Is Saturated. We Made 9 AI Models Draw a MacBook Pro Instead. How to compare model prices Compare on your own content. Your language and file types set the multiplier, so run a representative sample through each tokenizer before trusting a rate card. Treat a tokenizer change as a price change. When a vendor ships a new model at the same list price, check whether the tokenizer moved. Opus 4.6 to 4.8 is a ~32% increase with no line item on any invoice. Measure dollars per completed task, not dollars per token. That single number folds in tokenization, verbosity, thinking, and caching at once, and the provider's usage field gives you the ground truth to compute it. $/Mtok is still useful as an opening line. It just is not sufficient, and it is not comparable across tokenizers. Vendors could fix this tomorrow by also publishing prices per byte; until someone does, the conversion work is on you. None of this makes one model universally right.