OpenAI · model
gpt-realtime-mini deprecation: shutdown date & replacement
Shuts down January 20, 2027 — in 116 days
- Provider
- OpenAI
- Type
- model
- Announced
- Shutdown
- Replacement
gpt-realtime-2.1-mini- Source
- Official OpenAI notice
Listed as a model family; covers the family's snapshots.
How to migrate off gpt-realtime-mini
- Find every place that references it:
grep -rn --exclude-dir={node_modules,.git,dist} "gpt-realtime-mini" . - Replace the model ID:
- model: "gpt-realtime-mini" + model: "gpt-realtime-2.1-mini" - Re-run your evals or a sample of real prompts — output style, token usage and pricing can change between models.
- Check config outside code too: environment variables, feature flags, prompt-management tools, and fine-tuned model references.
- Deploy before January 20, 2027, and add the CI scanner so it cannot come back.
Also shutting down on January 20, 2027 (OpenAI)
gpt-4o-audiogpt-4o-mini-audiogpt-4o-mini-realtimegpt-4o-mini-transcribe-2025-03-20gpt-4o-realtimegpt-audiogpt-audio-minigpt-realtime
Questions
Is gpt-realtime-mini deprecated?
Yes. OpenAI has deprecated gpt-realtime-mini. It shuts down on January 20, 2027.
When does gpt-realtime-mini shut down?
January 20, 2027, according to OpenAI's official deprecation notice.
What should I use instead of gpt-realtime-mini?
OpenAI recommends gpt-realtime-2.1-mini. Switch the model ID and re-test your prompts, since outputs, pricing and limits can differ.
What happens to requests to gpt-realtime-mini after the shutdown?
Requests using the retired model ID fail with an error, so any code still calling it breaks. Update and deploy before the shutdown date.