Which models are going away

Three ways a model leaves. One is announced and you can plan for it. One is not, and you find out when something breaks. And one is announced by the vendor while the catalogue keeps listing it, which reads like neither.

Announced end-of-life

The vendor published a shutdown date. If your product calls one of these, that date is your migration deadline.

LeftModelVendor Shuts downDate from
D-2anthropic/claude-opus-4.1Anthropic2026-08-05the vendor
D-7openai/gpt-5.2-chatOpenAI2026-08-10the catalogue
D-7openai/gpt-5.3-chatOpenAI2026-08-10the catalogue
D-56openai/gpt-3.5-turbo-instructOpenAI2026-09-28the vendor
D-60google/gemini-2.5-flash-imageGoogle2026-10-02the vendor
D-81openai/gpt-4o-2024-05-13OpenAI2026-10-23the vendor
D-150z-ai/glm-4.5Z.ai2026-12-31the catalogue
D-170openai/gpt-audioOpenAI2027-01-20the vendor
D-170openai/gpt-audio-miniOpenAI2027-01-20the vendor
D-277google/gemini-3.1-flash-liteGoogle2027-05-07the vendor

Removed without an announcement

These were in the OpenRouter catalogue we check daily, and then they were not. The catalogue carried no shutdown date for them. This is the list that does not exist anywhere else, because it only exists if someone was watching on the day it happened. A model can leave an aggregator without its vendor retiring it, so confirm with your provider before you migrate.

VanishedModelVendor Last known name
2026-08-01openai/gpt-5.1-chatOpenAIOpenAI: GPT-5.1 Chat
2026-07-30openai/o3-deep-researchOpenAIOpenAI: o3 Deep Research
2026-07-30openai/o4-mini-deep-researchOpenAIOpenAI: o4 Mini Deep Research

Announced, and now gone

The vendor published a retirement date and the model has since left the catalogue. These are not silent removals and are kept out of that list, which would otherwise say something untrue about the vendor that did announce them.

VanishedModelVendor Vendor's date
2026-08-01mistralai/devstral-2512Mistral2026-07-31
2026-07-30openai/gpt-5-codexOpenAI2026-07-23

Announced, then un-announced

The vendor published a retirement date for these and its page no longer carries one. The model is still listed and still callable; what changed is what the vendor says about it. A calendar cannot show you this, because a calendar renders the page as it reads today and today is when it stopped saying so.

NoticedModelVendor Date it used to carry
2026-08-03google/gemini-2.5-proGoogle2026-10-16
2026-08-03google/gemini-2.5-flash-liteGoogle2026-10-16
2026-08-03google/gemini-2.5-flashGoogle2026-10-16

Retired by the vendor, still in the catalogue

The vendor's own deprecation page says these are gone. The catalogue still lists them, so you can pin one today and be surprised later. Neither source shows this on its own - it is only visible when both are read.

RetiredModelVendor Vendor's date
689 days agoopenai/gpt-3.5-turbo-0613OpenAI2024-09-13
491 days agomistralai/mistral-large-2407Mistral2025-03-30
244 days agogoogle/gemini-2.5-pro-preview-05-06Google2025-12-02
105 days agoanthropic/claude-3-haikuAnthropic2026-04-20
70 days agogoogle/gemini-3.1-flash-lite-previewGoogle2026-05-25
49 days agoanthropic/claude-sonnet-4Anthropic2026-06-15
49 days agoanthropic/claude-opus-4Anthropic2026-06-15
39 days agogoogle/gemini-3.1-flash-image-previewGoogle2026-06-25
39 days agogoogle/gemini-3-pro-image-previewGoogle2026-06-25
11 days agoopenai/gpt-5.2-codexOpenAI2026-07-23
11 days agoopenai/gpt-5.1-codex-miniOpenAI2026-07-23
11 days agoopenai/gpt-5.1-codex-maxOpenAI2026-07-23
11 days agoopenai/gpt-5.1-codexOpenAI2026-07-23

2 of these are still served on a platform whose own end-of-life is later, so the catalogue may be routing there rather than selling a dead model. The catalogue does not name the provider behind an entry, so that cannot be settled from it - they are counted above rather than quietly dropped.

Both lists come from the OpenRouter catalogue, checked once a day since 2026-07-29. A model absent for a single check and back the next is treated as an outage, not a retirement, and is not listed here. The full catalog is free JSON - no key, no signup.

Check your own code against this

Reading a list is work. This does it for you: point it at a repository and it reports which models you actually call are gone, which shut down soon, and where in your files they are used.

curl -sO https://neosignal-ai.vercel.app/check.py
python check.py .

No key, no signup, no dependencies. It exits non-zero when something you call is gone or shuts down inside 30 days, so it fails a CI build before a model does - and it exits 2 rather than passing if it could not reach the data, because a check that did not run is not a clean bill.

It does not guess what a model id looks like. Both the prefixed and the bare spelling are matched, and a token is kept only if it is a real id - so a directory path or a variable name cannot be mistaken for a model.

Source, issues and the CI recipe on GitHub