# Why did my OpenAI bill go up? > Your OpenAI bill went up for one of four reasons: more calls, longer calls, a pricier model, or retries. How to tell which one, with the math. URL: https://getculpa.com/why-did-my-openai-bill-go-up Last reviewed: 2026-08-01 ## Answer Your OpenAI bill went up for one of four reasons: more calls, longer calls, a shift toward a pricier model, or retries you paid for twice. Culpa, a local-first LLM cost, margin, and forecast ledger, prices every call from a versioned price book and names the conversation, feature, and customer behind the increase. ## Why this happens Four variables set your bill, and only four. Call count, tokens per call, the rate of the model that served each call, and the share of calls that produced nothing you kept. A provider dashboard moves all four into one total, so the total tells you the bill changed and nothing about which variable moved. Isolating them is arithmetic, not guesswork, but it needs per-call data the invoice doesn't carry. ## What this usually looks like - Call volume looks flat month on month while spend climbs, which points at tokens per call rather than traffic. - The increase starts on a specific day rather than ramping, which usually means a deploy rather than growth. - One feature accounts for most of the delta once somebody finally counts it by hand. - Your calculated spend from token counts sits below the invoice, and the gap is the part nobody has explained. ## Common mistakes - Reading the daily total and looking for the day it jumped. Why it hurts: A total tells you when, never what. Two different causes produce an identical-looking step change. Do instead: Split the same period four ways: calls, tokens per call, model mix, and retry share. One of the four moved. - Assuming a bigger bill means more users. Why it hurts: Cost per user drifts upward on its own as prompts grow and histories lengthen, with no new users at all. Do instead: Divide spend by active users for both months. If that number moved, growth isn't your cause. - Blaming the newest feature because it shipped recently. Why it hurts: Recency isn't evidence, and the real cause is often an older surface whose prompt quietly grew. Do instead: Rank features by absolute spend delta, not by ship date, then read the top one. - Fixing the model choice first because the rate card is the visible lever. Why it hurts: If retries or context growth drove the increase, a cheaper model just scales the same waste down slightly. Do instead: Find the mechanism first. Change the model only once you know the model was the mechanism. ## Self-check - Pull call count for both months. If it moved less than spend did, your problem is per-call cost. - Divide total input tokens by call count for each month. Growth here means prompts or histories got longer. - List spend by model for both months. A shift of even ten percent of traffic to a frontier model moves the total hard. - Count calls that errored or timed out and were retried. Every one of them billed. - Rank features by the change in their spend, not their total. The largest delta is your answer. ## The same increase, four possible causes, one arithmetic (illustrative) A month that rose from $400 to $600 on GPT-5.4 at real rates, $0.0025 per 1k input and $0.015 per 1k output. Baseline was 40M input and 20M output tokens. Each line below is the single change that would produce the same $200 on its own. Baseline: (40,000 x $0.0025) + (20,000 x $0.015) = $100 + $300 = $400 Cause A, 50% more calls at the same shape = $400 x 1.5 = $600 Cause B, output per call up 67% = $100 + (33,400 x $0.015) = $100 + $501 = $601 Cause C, a fifth of traffic moves to GPT-5.5 at $0.005 and $0.030 = $80 + $240 + $40 + $120 x 1.6 = $600 Cause D, a 50% retry rate on the same intended work = $400 x 1.5 = $600 Four different failures, one identical bill. Cause A is growth and needs no fix. Cause D is pure waste. The invoice can't tell them apart, and the response to each is completely different. ## Cost figures Every figure carries its confidence and its source. No figure on this site is provider-reported. - $400 to $600 — modelled monthly spend before and after, priced at real GPT-5.4 rates [estimated] Source: Baseline (40,000 x $0.0025) + (20,000 x $0.015) using GPT-5.4 rates per 1k tokens from the price book, effective 2026-07-02. Published as a range because the token volumes are modelled. - $0.0025 / $0.015 per 1k — GPT-5.4 input and output rates used throughout the arithmetic [calculated] Source: Culpa price book row for openai/gpt-5.4, effective 2026-07-02, verified against OpenAI API pricing. ## FAQ Q: How do I tell growth from waste in an OpenAI bill? A: Divide spend by active users for both periods. If cost per user held steady the increase is growth, and that's a business outcome rather than a bug. If cost per user rose, something in your system got more expensive per unit of work and that's worth chasing. Q: Can I work out the cause from the OpenAI dashboard alone? A: You can see the total and the model split, which rules some things in and out. You can't see which feature, conversation or customer produced the spend, because none of those concepts exist on the provider's side of the wire. Q: My call count didn't change but the bill did. What now? A: Look at tokens per call first. The usual causes are a longer system prompt, a growing conversation history resent on every turn, or tool definitions added to the payload. All three raise input tokens without touching call volume. ## 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=why-did-my-openai-bill-go-up&cluster=problem 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.