All notes

AI

Jul 28, 2026

Claude Opus 5 Is Experiencing Elevated Error Rates

Anthropic's status page flags an active incident affecting Claude Opus 5, with elevated error rates impacting API consumers and downstream integrations.

Anthropic's status page documents an ongoing incident for Claude Opus 5 under the identifier mfdtrknpxghq. The classification is elevated errors, meaning requests to the model are returning failures at a rate above baseline.

For teams running production workloads on Opus 5, the immediate implication is degraded reliability. Any pipeline that lacks retry logic or fallback routing to a lower-tier model like Sonnet or Haiku is exposed. Agentic workflows are particularly vulnerable — a single failed tool call or mid-chain completion can corrupt an entire run without explicit error handling.

The incident is listed on the public status page, which means Anthropic has acknowledged it and is actively tracking it. Engineers should monitor that page directly for resolution updates rather than relying on SDK-level errors alone, since the root cause and estimated recovery time are determined by the upstream team.

A few practical steps while the incident is open: route non-latency-sensitive workloads to a fallback model, increase retry budgets with exponential backoff, and avoid deploying new Opus 5-dependent features until the incident resolves. If your architecture gates on Opus 5 specifically — for context window size or capability reasons — queue those tasks rather than let them fail silently.

This is a reminder that frontier model APIs carry availability risk distinct from traditional infrastructure. Unlike a self-hosted service, you cannot roll back or reroute at the infrastructure layer. Defensive patterns — circuit breakers, graceful degradation, observability on model-specific error codes — are not optional in production AI systems.

The incident page will be updated as the team progresses toward resolution. No further details on scope or cause are confirmed at this time.