Tokens per Dollar Calculator
Inputs
| Price (per 1M tokens) | 3 $ |
|---|---|
| Budget | 10 $ |
Tokens per Dollar Calculator
Convert an LLM per-million-token price into purchasing power: how many tokens one currency unit buys and how many a given budget buys.
Inputs
Pricing & Budget
Results
Enter a value to see results.
Details
Tokens per dollar explained
Tokens per dollar is the purchasing power of a currency unit expressed in language-model tokens: the number of tokens a fixed amount of money buys at a given price. Providers publish prices per one million tokens because a single token costs a tiny fraction of a cent, and the per-million figure is the more legible quote. Tokens per dollar is the inverse of that quote, restated so the quantity bought — rather than the price paid — is the headline number.
How it works
If a provider charges price per one million tokens, the cost of a single token is . The tokens one currency unit buys is the reciprocal:
tu=p106For a budget , the total tokens it buys scale linearly with the budget:
T=pB⋅106Both relations are simple inversions of the per-million quote. Because input and output tokens are billed at different rates, the calculation is applied to one rate at a time; running it once with the input price and once with the output price brackets the purchasing power of a budget.
Worked example
A model priced at $3 per million input tokens costs — three millionths of a dollar — per token. One dollar therefore buys:
tu=3106≈333,333 tokensA budget of $10 buys ten times that:
T=310⋅106≈3,333,333 tokensso roughly 3.33 million tokens. At a rough conversion of 0.75 English words per token, 3.33 million tokens is on the order of 2.5 million words — useful for translating an abstract budget into a concrete volume of text the model can read or write.
Variations
The same inversion applies to any per-million quote. A cheaper model at $1 per million yields one million tokens per dollar; a premium model at $15 yields about 66,667. Output rates, typically three to five times the input rate, produce proportionally fewer tokens per dollar. The currency unit is arbitrary: the formula holds for any currency in which the price is quoted, so a price per million in yen gives tokens per yen.
Application
Tokens per dollar is most useful for cross-model comparison. Two models with different per-million prices and different capabilities can be placed on a common axis — tokens delivered per unit of spend — which makes the cost of switching legible. It also converts a project budget into a token allowance, the quantity that downstream estimates of request volume and context size depend on. To turn the token figure into a per-request or monthly bill, see Token Cost Calculator and LLM Monthly Cost Calculator; published rates often exclude the discounts modelled by Prompt Caching Savings Calculator and Batch API Savings Calculator.
Frequently Asked Questions (FAQ)
Why is pricing quoted per million tokens?
A single token costs a tiny fraction of a cent, so a per-token price would be an unreadable string of zeros. Quoting per million tokens keeps the headline number legible — a rate of three per million means each token costs three millionths of the currency unit, and one unit therefore buys roughly 333,000 tokens.
Should I use the input or output price?
Providers bill input (prompt) and output (completion) tokens at different rates, usually with output three to five times higher. This calculator applies one rate at a time, so run it once with the input price and once with the output price to bracket the purchasing power of a budget.
How many words is that many tokens?
As a rough guide, one token is about 0.75 English words, so a thousand tokens is roughly 750 words. Code, punctuation, and non-English scripts tokenize less efficiently, producing more tokens per character. Use a provider tokenizer for an exact count.
Disclaimer
Token counts depend on the model’s tokenizer and vary with language and content. Published prices change over time and may exclude discounts for caching or batch processing. Verify current rates with your provider before relying on a figure for budgeting.