OpenAI API Pricing Guide: GPT-5.5, GPT-5, and GPT-5 Mini Costs

Complete guide to OpenAI API pricing. Review input, output, prompt caching, and batch execution pricing for all GPT models. Sourced from official docs.

By the benchr team · · Figures verified against official sources, June 10, 2026 · View changelog

OpenAI remains the standard reference for API pricing. Developers can choose between the flagship reasoning model (GPT-5.5), the professional middle tier (GPT-5.4), the production workhorse (GPT-5), and the lightweight model (GPT-5 Mini). Below is the live OpenAI pricing sheet, pulled dynamically from the benchr data store.

Model ID Input / 1M Output / 1M Cached Input / 1M Batch Input / 1M
gpt-5.5$5.00$30.00$0.500$2.50
gpt-5.4$2.50$15.00$0.250
gpt-5$1.25$10.00
gpt-5-mini$0.250$2.00$0.025

Pricing Strategy: Optimizing OpenAI Costs

If your application relies heavily on OpenAI models, you can employ several tactics to significantly reduce your monthly bills:

  • Utilize Batch API for Async Workloads: OpenAI offers a 50% flat discount on all models if you queue requests via the Batch API. Requests are guaranteed to complete within 24 hours, making it perfect for model evaluation, classification, or translation.
  • Enable Prompt Caching: Dynamic system prompts and repetitive contexts are cached automatically. GPT-5.5 and GPT-5 Mini feature a 50% and 90% discount respectively for cached input hits.
  • Use Structured Outputs wisely: Enforcing strict JSON schemas has zero latency overhead, but the schema definition counts towards input tokens on the first call before it is cached. Ensure you use the same schema string globally.

For cross-provider comparisons, read the global AI Model Pricing Comparison, or calculate custom usage via the Cost Calculator.

Where GPT-5.4 fits

The ladder gained a rung in March 2026. GPT-5.4 sits at exactly double GPT-5 and exactly half of GPT-5.5: $2.50/1M input, $15/1M output, cached input at $0.25. What the middle rate buys is context up to 1M tokens (GPT-5 stops at 400K), built-in computer use, and the finance tuning that launched ChatGPT for Excel. It carries the same 272K long-context surcharge structure as GPT-5.5, so the headline rate only holds below that line. The GPT-5.4 pricing breakdown has the full math.

Budgeting OpenAI workloads

OpenAI pricing decisions usually come down to routing. GPT-5 Mini is the volume tier, GPT-5 is the default general-purpose tier, GPT-5.4 is the context-and-computer-use middle, and GPT-5.5 is the expensive tier for work where higher capability measurably reduces failure. Treat those as routing lanes, not as interchangeable chat models.

Before standardizing on one model, separate calls by risk. Use the smaller tier for extraction, classification, and simple drafting; use the middle tier for normal user-facing answers; reserve the flagship tier for tasks where a wrong answer creates enough review cost or product risk to justify the premium.

What to measure after launch

After deployment, track model cost by feature rather than by account total. The important lines are average input tokens, average output tokens, retry rate, and fallback rate per feature. A chat feature, an extraction feature, and a coding feature can have completely different economics even when they use the same OpenAI model.

Review the routing rules monthly. If GPT-5 Mini starts passing the same checks as GPT-5 for a narrow workflow, move that workflow down. If GPT-5 produces expensive review failures in a high-risk area, move only that area up to GPT-5.5 instead of upgrading everything.

For teams already using OpenAI, the cheapest optimization is often prompt discipline rather than a model switch: shorter system messages, structured outputs that prevent verbose answers, and caching repeated instructions where the platform supports it. Clean prompts reduce cost and make evals more stable.

Finally, keep a simple monthly price audit. Provider pricing, batch discounts, and model aliases can change faster than product teams notice. A five-minute check against the official pricing page and your own usage dashboard prevents a quiet model change from becoming a surprise bill.

Frequently asked

How much does the GPT-5 API cost?

GPT-5 costs $1.25 per million input tokens and $10.00 per million output tokens, representing a highly cost-effective mid-tier workhorse compared to the flagship GPT-5.5.

What is the discount for OpenAI Batch API?

OpenAI offers a 50% discount on input and output tokens for requests submitted via the Batch API. Batch jobs run asynchronously and return results within 24 hours, which is perfect for non-time-sensitive workloads like translation and offline evaluations.

Does OpenAI support fine-tuning for GPT-5?

Yes. Fine-tuning is supported for both GPT-5 and GPT-5 Mini. Fine-tuned models carry a premium (typically 2x the base model price per token), plus an hourly hosting fee. For small-scale customizations, RAG or prompt engineering is usually more cost-effective.

Changelog

  • June 10, 2026 — Added GPT-5.4 to the rate table and routing guidance after re-verifying it on OpenAI's pricing page (it was wrongly dropped as "unverified" on June 1). Linked the dedicated GPT-5.4 pricing breakdown.
  • — Published. GPT-5.5, GPT-5, and GPT-5 Mini prices verified against platform.openai.com/docs/pricing.

Sources

  • OpenAI Platform pricing — platform.openai.com/docs/pricing (verified June 3, 2026)
  • OpenAI Batch API docs — platform.openai.com/docs/guides/batch (verified June 3, 2026)
  • benchr model-figures.json — single source of truth, verified June 3, 2026