OpenAI · model
text-moderation-stable deprecation: shutdown date & replacement
Shut down October 27, 2025
- Provider
- OpenAI
- Type
- model
- Announced
- Shutdown
- Replacement
omni-moderation- Source
- Official OpenAI notice
How to migrate off text-moderation-stable
- Find every place that references it:
grep -rn --exclude-dir={node_modules,.git,dist} "text-moderation-stable" . - Replace the model ID:
- model: "text-moderation-stable" + model: "omni-moderation" - 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 October 27, 2025, and add the CI scanner so it cannot come back.
Also shutting down on October 27, 2025 (OpenAI)
Questions
Is text-moderation-stable deprecated?
Yes. OpenAI has deprecated text-moderation-stable. It was shut down on October 27, 2025.
When does text-moderation-stable shut down?
October 27, 2025, according to OpenAI's official deprecation notice.
What should I use instead of text-moderation-stable?
OpenAI recommends omni-moderation. Switch the model ID and re-test your prompts, since outputs, pricing and limits can differ.
What happens to requests to text-moderation-stable 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.