Blog Post

OpenAI Ultrafast API: When 750 Tokens per Second Actually Helps

OpenAI Ultrafast can run GPT-5.6 Sol at up to 750 output tokens per second. Here is how to use the API tier, measure the real latency gain, and decide when the premium is justified.

OpenAI Ultrafast API: When 750 Tokens per Second Actually Helps - Blog post featured image

OpenAI Ultrafast can generate up to 750 output tokens per second with GPT-5.6 Sol. That is up to 14 times faster than Standard processing. The new API tier arrived on August 13, but the headline hides the question that matters in production: is model generation actually the slow part of your workflow?

Sometimes it is. Often it is not.

An agent that spends eight seconds waiting for a database query will not become 14 times faster because its final answer streams in a fraction of a second. The same is true when a build takes four minutes, a browser action waits on a page, or an internal API has a slow response. Ultrafast accelerates the model. It does not accelerate everything around the model.

Our position is simple. Ultrafast is interesting for latency-sensitive products, but turning it on before measuring the full request path is an expensive guess.

What OpenAI Ultrafast actually is

Ultrafast is not a smaller model and it is not a new model name. It is an access-controlled processing tier for gpt-5.6-sol, powered by Cerebras hardware.

The distinction matters. Teams have traditionally reduced response time by choosing a smaller model, cutting reasoning, or accepting weaker results. Ultrafast keeps the GPT-5.6 Sol model while increasing its output rate. OpenAI says the tier reaches up to 750 output tokens per second and up to 14 times the speed of Standard processing.

The phrase "up to" is doing real work. It is a ceiling, not a service-level promise for every prompt. Prompt size, reasoning effort, output length, traffic conditions, and tool calls still affect the result.

OpenAI currently offers Ultrafast only to a limited group of customers. Public API documentation lists ultrafast as a valid service_tier value for GPT-5.6 Sol, but the launch announcement says access will expand as capacity grows. Public pricing was not included in the announcement.

That missing price is not a footnote. A speed tier cannot be evaluated on speed alone.

How to request Ultrafast in the API

If your project has access, the code change is small. Set service_tier to ultrafast in a Responses API request:

from openai import OpenAI

client = OpenAI()

response = client.responses.create(
    model="gpt-5.6-sol",
    service_tier="ultrafast",
    input="Review this incident timeline and list the next two checks."
)

print(response.service_tier)
print(response.output_text)

Do not stop at sending the parameter. Log the service_tier returned in the response. The Responses API reference says a request served through Ultrafast will return service_tier=ultrafast.

That response field belongs in your telemetry. Without it, a latency chart cannot tell you whether an outlier came from the tier, the model, or another dependency.

We would also put the tier behind a feature flag. Start with a small percentage of eligible traffic and preserve a Standard fallback. Limited preview capacity is not where we would place every critical request on day one.

750 tokens per second is not the same as instant

Tokens per second measures how quickly output is generated after the model begins responding. Users experience something broader.

The useful production metric is end-to-end latency. Start the clock when the user acts. Stop it when the application has delivered a usable result. That window can include authentication, retrieval, tool execution, model reasoning, output generation, validation, and rendering.

Consider an incident-response agent with this measured path:

  • 0.4 seconds to authenticate and load the incident
  • 2.8 seconds to query logs and traces
  • 0.9 seconds for the first model call
  • 6.0 seconds to run diagnostic tools
  • 1.4 seconds for the final model response

The complete task takes 11.5 seconds. Even if Ultrafast reduces the two model portions from 2.3 seconds to 0.3 seconds, the task still takes about 9.5 seconds. That is a useful 17% improvement, not a 14 times improvement.

Now change the workload. A coding assistant generates 4,000 output tokens with no external tool call. At 50 tokens per second, generation alone takes roughly 80 seconds. At 750 tokens per second, the same output could theoretically stream in about 5.3 seconds once generation starts.

That is where the tier changes the product experience.

OpenAI's own latency optimization guide makes the broader point. Processing tokens faster is only one lever. Fewer requests, shorter outputs, parallel work, and non-LLM code can matter more.

The benchmark is impressive, but it is not your workload

Cerebras reports that Ultrafast completed the 2,500-question Humanity's Last Exam run in 11 hours and 11 minutes. It also reports a 5.6 times end-to-end speedup on GDP-Val with no quality degradation in that evaluation.

Those results show that large, model-heavy jobs can compress dramatically. They do not prove that your agent will see the same gain.

Benchmarks control the workload. Production systems inherit slow APIs, retries, rate limits, malformed data, and users who change direction midway through a task. A team should treat the Cerebras results as evidence that the tier is worth testing, not evidence that a migration is already justified.

What to measure before paying for speed

Run the same production-shaped evaluation on Standard and Ultrafast. Do not compare two demo prompts and call it a benchmark.

Track at least these values:

  • Time to first token, which measures how long the user sees nothing
  • Output tokens per second, which isolates generation speed
  • End-to-end task time, including every tool and API
  • Success rate, because a fast wrong answer is still a failed task
  • Cost per successful task, not just cost per million tokens

The last metric prevents a common mistake. If faster responses let a developer complete more reviews, reduce incident downtime, or keep an interactive user in flow, the premium may pay for itself. If the result feeds an overnight batch job, the same premium may buy nothing.

A simple decision formula is enough:

value of time saved per task
multiplied by monthly task volume
must be greater than
the monthly Ultrafast premium plus implementation cost

Until OpenAI publishes or quotes pricing for your access, any return-on-investment number is speculation. We would not hide that uncertainty inside a polished spreadsheet.

Where Ultrafast makes sense

The best candidates are workflows where output generation dominates and a person is actively waiting.

Interactive coding is one. A developer can stay focused when a long patch arrives in seconds instead of after a context switch. Live financial or technical research can also benefit when each answer determines the next question. Incident analysis may qualify when the agent reads evidence and proposes checks while an outage is still active.

There is another useful case: repeated iteration. A single response saving 20 seconds sounds modest. A developer running 60 model turns during a debugging session saves 20 minutes. The business outcome comes from the loop, not one flashy request.

Where it is probably a waste

Ultrafast is a poor default for asynchronous work. Nightly enrichment, document classification, offline evaluations, and queued report generation rarely need frontier inference at the highest available speed.

It is also the wrong first fix for a tool-heavy agent. Profile the tools. Cache stable data. Run independent calls in parallel. Remove redundant model hops. A faster final generation cannot repair a slow architecture.

Small outputs deserve skepticism too. If the model returns a six-token routing decision, network and queue time may matter more than generation speed. A compact model or plain application logic can be cheaper and just as fast.

Finally, limited preview access creates operational risk. Capacity can be constrained, pricing is not public, and broad availability has no announced date. A critical workflow needs a tested fallback before Ultrafast becomes part of its latency promise.

The real opportunity is a tighter product loop

The interesting part of OpenAI Ultrafast is not watching text appear quickly. It is what a team can redesign when a frontier model can keep pace with a person.

That could mean an engineering agent that proposes a fix while logs are still arriving. It could mean a research tool where the user tests five hypotheses in one sitting instead of submitting one job and returning tomorrow. Those products need more than a service-tier flag. They need latency budgets, evaluation sets, fallbacks, and instrumentation that separates model time from tool time.

We build AI agents, generative AI applications, and full-stack SaaS products around those production details. If you are deciding whether Ultrafast changes a product you are building, book a call with Axentia. We can help measure the real bottleneck before speed becomes another expensive feature nobody can prove worked.

Explore More Articles

Discover other insightful articles and stories from our blog.