Cafiyn Pulse
← Startup Signals
4 min readUpdated 2026-09-07Issue 2

Whisper shuts down on 26 February. The risk is not the deadline.

Five months is a generous window. Whisper is also typically wired into a background job that fails into a queue rather than into a user's face.

ByKarthik KumarCafiyn Innovations
At a glance
Shutdown date
26 February 2027
Announced
26 August 2026
Affected
whisper-1, gpt-4o-transcribe, gpt-4o-mini-transcribe, gpt-4o-transcribe-diarize
Replacements
gpt-transcribe, gpt-live-transcribe
Related date
Legacy audio and realtime family, 20 January 2027

What was announced

On 26 August 2026 OpenAI deprecated whisper-1, gpt-4o-transcribe, gpt-4o-mini-transcribe and gpt-4o-transcribe-diarize, with removal from the API on 26 February 2027. The named replacements are gpt-transcribe and gpt-live-transcribe.

It arrives alongside a related date. The legacy audio and realtime family, including gpt-realtime, gpt-audio, gpt-4o-audio, gpt-4o-realtime and the mini variants, shuts down on 20 January 2027, announced 20 July 2026. If you do anything with speech, you likely have exposure to both.

Why this one is easy to miss

Whisper has one of the largest install bases of any OpenAI endpoint, and much of that install base is glue code. Transcription is typically not a feature in itself: it is the first step of a pipeline that summarises a call, indexes a meeting, generates subtitles or feeds a search index.

That shape is what makes it risky. Pipeline steps run on a schedule or off a queue, so when they start failing the first symptom is usually an absence rather than an error: summaries stop appearing, a search index quietly stops growing, a metric drifts. Nobody is watching a screen at the moment it breaks.

Five months of notice is genuinely generous. The failure mode is not that the window is too short, it is that a comfortable window invites deferral until the window is no longer comfortable.

Migrating

The replacement path is named, which puts this in the easier category of deprecation: a model string change plus verification. The verification is the part worth budgeting for, because transcription quality is not uniform across accents, audio quality, domain vocabulary and language, and your evaluation set probably does not cover all four.

Note that gpt-live-transcribe and gpt-transcribe are different tools for different shapes of work. If your pipeline processes a completed file, you want the batch-style endpoint; if you are transcribing an ongoing stream, you want the live one. Picking by name similarity rather than by workload is the easy mistake here.

  • grep -rn "whisper-1\|gpt-4o-transcribe\|gpt-4o-mini-transcribe\|gpt-4o-transcribe-diarize"
  • Check scheduled jobs and queue workers specifically, not just request handlers
  • Check any per-customer configuration stored outside the repo
  • Build a evaluation set that includes your worst audio, not your cleanest
  • Choose between gpt-transcribe and gpt-live-transcribe by workload shape, batch versus streaming

What to do

  1. 1Grep for the four affected identifiers now, so the scope is a list rather than an unknown.
  2. 2Look specifically at scheduled jobs and queue consumers, which fail silently.
  3. 3Assemble an evaluation set from your hardest real audio: accents, background noise, domain terms, non-English.
  4. 4Pick the replacement by workload shape, batch or streaming, rather than by name.
  5. 5Check the 20 January 2027 audio and realtime shutdown at the same time, since the exposure usually overlaps.

Common questions

When does Whisper stop working?

26 February 2027 for whisper-1, gpt-4o-transcribe, gpt-4o-mini-transcribe and gpt-4o-transcribe-diarize. The deprecation was announced on 26 August 2026.

What replaces Whisper?

OpenAI names gpt-transcribe and gpt-live-transcribe. They serve different shapes of work: batch processing of completed audio versus transcription of an ongoing stream.

Is the realtime audio API affected too?

Separately, yes. The legacy audio and realtime family, including gpt-realtime, gpt-audio, gpt-4o-audio and gpt-4o-realtime, shuts down on 20 January 2027, announced 20 July 2026.

Sources

Read against the primary documentation rather than secondary coverage. Where a figure comes from a provider's own docs, it is quoted as published on 2026-09-07.

Related

More from Signals

OpenAI has published seven shutdown dates. Here is the calendar.
Seven dates between 23 October and 26 February. Every one announced months ahead, in public. The failure mode is never the notice.
Nvidia bought Hugging Face. Your open-weight fallback is now a vendor relationship.
The commitments say nothing breaks. The structural change is that "we can always self-host" is now a dependency on one vendor rather than on a neutral commons.
The Videos API goes away on 24 September and OpenAI names nothing to move to.
Every other deprecation on OpenAI's page offers a migration target. This one does not, which makes it a different kind of problem.
The Assistants API is gone. Your app may not have told you yet.
It shut down on 26 August 2026. The replacement is not a drop-in, and the most common migration mistake changes your model's behaviour without throwing an error.
One Copilot code review costs 13 requests. Here is the rest of the maths.
Copilot now bills on usage rather than seats. The headline change is simple. The multipliers underneath it are where teams get surprised.
Row-level security is on by default now. That is not the same as being protected.
Lovable fixed the default. The gap that actually leaks data was never the default, it was the policy, and no platform can write that for you.
Your model comparison is measuring the wrong number.
Every price list is per token. Your bill is per finished piece of work. Those two numbers can rank models in opposite orders.
An agent with production log access is a new identity. Treat it like one.
Always-on agents that read production logs are arriving fast. The access-control question they raise is old and well understood, which is the good news.

Open the tool.

Ten production categories, three minutes, and a ranked list of what to fix first.

Check your own stack