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.
- 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
- 1Grep for the four affected identifiers now, so the scope is a list rather than an unknown.
- 2Look specifically at scheduled jobs and queue consumers, which fail silently.
- 3Assemble an evaluation set from your hardest real audio: accents, background noise, domain terms, non-English.
- 4Pick the replacement by workload shape, batch or streaming, rather than by name.
- 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
Open the tool.
Ten production categories, three minutes, and a ranked list of what to fix first.
Check your own stack