Skip to main content
critical impact

Claude Opus 4.1 retires on August 5, 2026

Anthropic is retiring Claude Opus 4.1 on the Claude API and recommends Claude Opus 4.8 as its replacement.

Provider
Anthropic
Surface
Claude API
Change type
model retirement
Shutdown
Announced
Last verified

What breaks

Production requests pinned to claude-opus-4-1-20250805 will fail once Anthropic retires the model.

  • Requests using claude-opus-4-1-20250805 will stop working after retirement.

Affected identifiers and fields

Search your code, environment variables, gateway configuration, and stored request templates for these exact values.

  • claude-opus-4-1-20250805
  • model
  • model retirement
  • Claude Opus 4.1

Migration target

Replace the retired model ID with claude-opus-4-8 and regression-test model behavior before the cutoff.

  • claude-opus-4-8

What to do

Update the model ID to claude-opus-4-8, then rerun prompt, tool-use, latency, and output-quality tests before August 5.

Before and after

Beforepython
response = client.messages.create(
    model="claude-opus-4-1-20250805",
    max_tokens=1024,
    messages=[{"role": "user", "content": "Summarize this report."}],
)
Afterpython
response = client.messages.create(
    model="claude-opus-4-8",
    max_tokens=1024,
    messages=[{"role": "user", "content": "Summarize this report."}],
)

Official source receipts

These provider pages support the dates, identifiers, symptoms, and migration direction recorded above.

Official source 1 · verified July 26, 2026Model deprecations — Claude Opus 4.1

Anthropic · Official documentation