# GPT-5.4 mini pricing, and where the saving disappears > GPT-5.4 mini pricing is $0.75 per million input and $4.50 output, about a third of GPT-5.4. Where it saves money and where volume eats the saving. URL: https://getculpa.com/gpt-5-4-mini-pricing Last reviewed: 2026-08-01 Rates effective: 2026-07-02 ## Answer GPT-5.4 mini pricing is $0.75 per million input tokens and $4.50 per million output tokens, roughly a third of GPT-5.4 on both sides. Cheap enough that teams stop counting calls, which is how volume eats the saving. Culpa, a local-first LLM cost, margin, and forecast ledger, meters every call so a cheap model can't hide behind its rate. ## Why this happens Mini exists to take the mechanical work off the expensive model, and it does that well. The failure mode is behavioural rather than technical. A rate three times lower feels like a rounding error, so nobody instruments the feature, retry caps get relaxed, and prompt length stops being reviewed. Then call volume runs into the millions and the cheapest model on the roster becomes a line item nobody can explain. ## What this usually looks like - A mini-powered feature appears in your top three by spend, which nobody expected. - Mini traffic carries no feature tag, because it seemed too cheap to be worth instrumenting. - Retry caps on mini paths are looser than on frontier paths, so failures multiply against a huge call count. - Prompt length on mini calls has never been reviewed, because the per-call cost looks negligible. ## Common mistakes - Skipping attribution on mini calls because the rate is low. Why it hurts: Volume is the multiplier here, and untagged spend is exactly where an unexplained line item grows. Do instead: Tag mini traffic the same way you tag frontier traffic. The cost of the tag is nothing. - Copying a frontier retry policy onto mini paths. Why it hurts: Mini handles very high call counts, so a five-attempt policy multiplies an enormous denominator. Do instead: Cap retries at two and measure attempts per successful result, the same as anywhere else. - Leaving long system prompts on mini calls. Why it hurts: At millions of calls a month, a thousand wasted prompt tokens is a real monthly number. Do instead: Price the prompt: call volume times prompt tokens times $0.75 per million. Then decide. ## Self-check - Find your monthly mini call count. It's usually an order of magnitude above your frontier count. - Multiply prompt tokens by that call count by $0.75 per million. That's your fixed prompt cost. - Check whether mini traffic carries feature tags. If not, it's sitting in unattributed spend. - Compare attempts to successful results on mini paths specifically. - Confirm mini is actually doing mechanical work, not reasoning work it fails at and then retries. ## Where a third of the rate stops being a third of the bill (illustrative) A routing step on mini handling 8 million calls a month. Each call sends 900 input tokens, mostly a fixed system prompt, and returns 60 output tokens. Input: 8,000,000 x 900 = 7,200M tokens x $0.75 per million = $5,400 Output: 8,000,000 x 60 = 480M tokens x $4.50 per million = $2,160 Month total = $7,560 for a step everyone describes as cheap Trimming the prompt from 900 to 400 tokens: 3,200M x $0.75 = $2,400, saving $3,000 The same work on GPT-5.4 would be (7,200 x $2.50) + (480 x $15.00) = $18,000 + $7,200 = $25,200 Mini saves $17,640 a month against GPT-5.4 here, and still costs $7,560. Trimming five hundred prompt tokens saves another $3,000, which is more than most teams find anywhere else. ## Cost figures Every figure carries its confidence and its source. No figure on this site is provider-reported. - $0.75 / $4.50 per million — GPT-5.4 mini input and output rates [calculated] Source: Culpa price book row for openai/gpt-5.4-mini, $0.00075 and $0.0045 per 1k, effective 2026-07-02, verified against OpenAI API pricing. Shown here per million. - $4,560 to $7,560 — modelled monthly cost of a mini routing step at eight million calls, trimmed prompt versus untrimmed [estimated] Source: From the teardown arithmetic at real GPT-5.4 mini rates. Published as a modelled scenario because the call volume and token sizes are assumptions. ## FAQ Q: How much cheaper is GPT-5.4 mini than GPT-5.4? A: About a third on both sides. $0.75 against $2.50 for input and $4.50 against $15.00 for output, per million tokens. The saving is real, but it applies per token, so it disappears if the move to mini comes with looser prompt discipline. Q: What work should stay on the larger model? A: Anything where a wrong answer is expensive or hard to detect. Mini is well suited to routing, classification, extraction and formatting. Test on your own data rather than assuming, because the boundary sits in a different place for every product. Q: Does GPT-5.4 mini support cached input? A: Yes, at $0.075 per million against the $0.75 input rate, the same 90% discount the larger models carry. At mini's typical call volume that discount is worth more in absolute terms than it's on a frontier model. ## Sources - OpenAI API pricing: https://developers.openai.com/api/docs/pricing Run the free Cost Leak Scan: https://app.getculpa.com/scan?source=pseo&slug=gpt-5-4-mini-pricing&cluster=model_pricing Machine-readable index of every guide: https://getculpa.com/api/pages Human-readable index of every guide: https://getculpa.com/guides Site overview: https://app.getculpa.com/llms.txt Privacy: Culpa runs on your infrastructure. Your prompts and responses never leave it. Culpa counts calls to run your plan, and it fails open, so if it ever breaks your app keeps running.