Creuto is now an OpenAI Select Partner Read More
OpenAI Fast mode costs 2x Standard on GPT-5.6 Sol for up to 2.5x speed. The per-model premium, the cost per saved second, and when to skip it.

OpenAI Fast mode is the old priority processing tier under a new name, and its headline promise, up to 2.5x faster than Standard, comes with a price multiplier that is not the same on every model. On GPT-5.6 Sol you pay exactly twice the Standard rate; on GPT-5.5 you pay 2.5 times. This post gives you the per-model premium, a way to price each second you save, and the cases where Fast mode is money wasted.
service_tier: "fast" and service_tier: "priority" both work.gpt-5.6-sol.The rename is backward compatible. The 30 July changelog entry says requests tagged priority automatically use Fast mode, and on the same date OpenAI raised Fast mode's speed for gpt-5.6-sol to the "up to 2.5x" figure. On 5 August it extended Fast mode to long-context prompts over 272K tokens on Sol, Terra and Luna.
One detail will confuse your dashboards. For GPT-5.6 and earlier models the response's service_tier field returns priority even when you sent fast, and the usage dashboard groups those requests as priority too. If your logging filters on the string fast, it will count nothing.
You enable Fast mode per request with service_tier: "fast" on the Responses or Chat Completions API, or for a whole project under Settings, General, Project Service Tier. With the project setting, requests that do not specify a tier default to Fast, and the Fast mode guide says traffic transitions "gradually" rather than at once.
client.responses.create(
model="gpt-5.6-sol",
input="...",
service_tier="fast",
)
OpenAI Fast mode pricing sits in its own table on the pricing page, headed "Fast mode", separate from Standard, Batch and Flex. Short-context rates per 1M tokens, input / output, as of 21 September 2026:
| Model | Standard | Fast mode | Multiplier |
|---|---|---|---|
gpt-6-astra | $10.00 / $50.00 | $20.00 / $100.00 | 2x / 2x |
gpt-5.6-sol | $4.00 / $20.00 | $8.00 / $40.00 | 2x / 2x |
gpt-5.6-terra | $2.00 / $12.00 | $4.00 / $24.00 | 2x / 2x |
gpt-5.6-luna | $0.20 / $1.20 | $0.40 / $2.40 | 2x / 2x |
gpt-5.5 | $5.00 / $30.00 | $12.50 / $75.00 | 2.5x / 2.5x |
gpt-5.4 | $2.50 / $15.00 | $5.00 / $30.00 | 2x / 2x |
gpt-5 | $1.25 / $10.00 | $2.50 / $20.00 | 2x / 2x |
gpt-5-mini | $0.25 / $2.00 | $0.45 / $3.60 | 1.8x / 1.8x |
o3 | $2.00 / $8.00 | $3.50 / $14.00 | 1.75x / 1.75x |
gpt-4.1 | $2.00 / $8.00 | $3.50 / $14.00 | 1.75x / 1.75x |
The GPT-5.6 family and GPT-6 Astra are a clean 2x. GPT-5.5 is 2.5x. o3 and gpt-4.1 are cheaper to speed up, at 1.75x, and gpt-5-mini sits at 1.8x. Some models you may still run, including gpt-5-nano, gpt-5-pro and o3-pro, do not appear in the Fast table at all. Cached input discounts still apply in Fast mode, which makes caching the first thing to fix before you pay for speed; our write-up on prompt caching covers how.
Speed has a price per second only once you fix a latency baseline, and OpenAI does not publish one. The numbers below are assumptions, labelled as such. Replace them with your own p50 latency and token counts.
At the full 2.5x, 8 seconds becomes 3.2, saving 4.8 seconds: $0.020 / 4.8 = about $0.0042 per saved second. "Up to" is a ceiling, though. If your traffic sees 1.5x (our assumption, not OpenAI's), 8 seconds becomes 5.3, you save 2.7 seconds, and each one costs about $0.0075, nearly twice as much.
Scale it to decide. At 100,000 requests a month the premium is $2,000. At the full speed-up that buys 480,000 seconds, about 133 hours of users not waiting, or roughly $15 per hour of waiting removed. That is the number to put in front of a product owner, next to what a slow answer costs in abandoned sessions.
OpenAI Fast mode is worth the cost where a person watches the response arrive and traffic is steady. The guide calls it "ideal for high-value, user-facing applications with regular traffic where latency is paramount". A support chat, an in-app copilot or a checkout assistant fits. It is the wrong choice in five cases:
service_tier: "default". The rule of thumb: above 1M input tokens per minute, grow by no more than 50% every 15 minutes.gpt-5.6-luna for "the lowest cost and latency". Dropping reasoning effort or model tier may save more seconds than Fast mode, for less money.The strongest case against our framing is that latency is not linear in value: shaving 5 seconds off a 30-second agent run may matter far less than shaving 2 off a 3-second chat reply. That is true, and it argues for applying Fast mode per route, not per project. In the AI builds we run, only the handful of routes a user watches are candidates. Fast mode and Standard share one rate limit per model, so the split costs you no extra quota.
OpenAI announced Ultrafast mode on 13 August as a new API service tier for GPT-5.6 Sol that "runs up to 14x faster than Standard processing", available in limited preview to select customers. No price is published on the pricing page, so there is no cost per saved second to compute yet. Plan with Fast mode and treat Ultrafast as a future option, not a line in this quarter's budget.
If you are choosing between Sol, Terra and Luna before you choose a tier, our comparison of GPT-6 Astra vs GPT-5.6 covers the model decision, and our AI engineering team can instrument the latency baseline this calculation needs. The next step is the same either way: log p50 and p95 latency per route for a week on Standard, then price Fast mode against those numbers rather than against "up to".
OpenAI Fast mode is worth the cost for user-facing routes with steady traffic where people wait on the answer. On GPT-5.6 Sol it doubles the per-token price for up to 2.5x faster responses. For batch jobs, spiky traffic or background agents, Standard or Batch processing is usually the better choice.
Fast mode is a paid service tier that runs requests up to 2.5x faster than Standard processing with more consistent latency, at a per-token premium. Both share the same rate limit per model, and cached input discounts still apply. Fast mode does not support fine-tuned models or embeddings.
You enable OpenAI Fast mode by setting service_tier to fast on a Responses or Chat Completions request, or by changing Project Service Tier to Fast in the project's general settings. The older value priority still works. For GPT-5.6 and earlier models, responses report the tier as priority.
Priority processing was renamed Fast mode on 30 July 2026, and the change is backward compatible: requests tagged priority automatically use Fast mode. On the same date OpenAI increased Fast mode's speed for GPT-5.6 Sol to up to 2.5x faster than Standard processing, at twice the Standard price.
OpenAI Ultrafast mode is a service tier for GPT-5.6 Sol, announced on 13 August 2026, that runs up to 14x faster than Standard processing. It is in limited preview for select customers, and as of September 2026 the pricing page lists no Ultrafast price.
Ready to take the first step towards unlocking opportunities, realizing goals, and embracing innovation? We're here and eager to connect.
11th Floor, O-Hub, Chandaka Industrial Estate, Infocity, Bhubaneswar, Odisha 751024
Level 4, 11 York Street Sydney Startup Hub Sydney, NSW – 2000
30 N. Đinh Nghệ, Phước Mỹ Sơn Trà, Đà Nẵng / Da Nang City – 550000
Level 25, AIDP Business Tower, Dubai Marina, United Arab Emirates
50 Beauchamp Street, Wellington, WGN 5028, New Zealand