共有:
API Change · Claude Code

"claude-fable-5"
is now returning 404

Developers who pinned "claude-fable-5" as their model ID after the June 9 launch are now hitting 404 errors. You need to fall back to Anthropic's auto-route or manually update your model config.

AI Navigate Editorial·2026.06.14·6 min read
Your app model=claude-fable-5 Anthropic API 404 Not Found Switch to opus-4-8 Worked June 9 through shutdown. Now returns 404.
01
What Happened

Devs who pinned early
are getting immediate errors

Fable 5 was available via API from day one of its June 9 launch. Many developers — particularly those working on code-migration, completion, and cyber-research validation tasks — embedded model: "claude-fable-5" directly into their code within hours of launch.

With Fable 5 taken offline under the export-control order, the model ID "claude-fable-5" now returns 404. Any code that pins it will fail immediately on the next API call.

02
Scope Check

Auto-route is fine——
only pinned model IDs break

Code using Anthropic's auto-route — API calls with no model specified — has automatically fallen back to Opus 4.8 and is unaffected. If you use Claude Code, check whether your config file still references "claude-fable-5" and update it. Also worth checking: environment variables and CI/CD secrets where the model string may be stored.


03
Fix and Lesson

Find the string, swap the model,
retest outputs

Two steps: grep your codebase for "claude-fable-5" and replace with "claude-opus-4-8" or remove the model param entirely. Then revalidate output quality.

Immediate error Anywhere claude-fable-5 is pinned explicitly Check now Claude Code model config files Unaffected Auto-route (no model specified)
FIG. Impact depends entirely on whether you pinned the model ID explicitly.

No restoration timeline has been given. For high-stakes workflows, this is the moment to reconsider whether model-version pinning is the right pattern at all. Auto-routing with a capability-level fallback policy is more resilient to events like this one.

AI Navigate — Daily Update · 2026.06.14