Claude API 运行正常
Anthropic 报告 api.anthropic.com 正常。状态是绿时还失败的请求,多半是你的 key、限流或请求体 —— 看下面的错误码。
We’ve suspended access to Claude Mythos 5 and Claude Fable 5
Learn more here: https://anthropic.com/news/fable-mythos-access
View Incident Detailarrow_forward组件状态
Claude API (api.anthropic.com)
Backend Systems
正常
Anthropic API 错误码 —— 你的问题 vs Anthropic 的问题
HTTP 状态码一眼就能告诉你该改请求还是该等。只有 500 和 529 才是 Anthropic 这边的问题。
| 状态码 | 类型 | 谁的问题 | 怎么办 |
|---|---|---|---|
| 400 | invalid_request_error | 你 | 请求格式错误。改请求体 —— 重试没用。 |
| 401 | authentication_error | 你 | API key 缺失或无效。 |
| 403 | permission_error | 你 | 这个 key 没权限访问该模型或资源。 |
| 429 | rate_limit_error | 你 | 触发速率或 token 上限。退避并降低并发。 |
| 500 | api_error | Anthropic | 意外的服务器错误。退避后重试。 |
| 529 | overloaded_error | Anthropic | API 满负荷。用指数退避重试。 |
Claude API 状态 —— 常见问题
Claude API(api.anthropic.com)现在崩了吗? expand_more
看本页顶部的横幅 —— 它由 Anthropic 公开状态页上自家的 Claude API 组件驱动。红色 = 已确认 API 故障,黄色 = 性能下降,绿色 = 正常。如果是绿的但你的请求失败,看 HTTP 状态码:4xx 几乎都是你的请求,5xx/529 才是 Anthropic 这边。
「Anthropic 状态」和「Claude API 状态」有什么区别? expand_more
Anthropic 只有一个状态页(status.claude.com),覆盖好几个组件 —— claude.ai、Claude API(api.anthropic.com)、Claude Code 等。「Claude API 状态」特指 api.anthropic.com 这个组件,也就是本页关注的对象。整体「Anthropic 状态」可能因为别的组件变红,而 API 本身没事。
529 错误算 API 故障吗? expand_more
不完全是。529(overloaded_error)是 API 一时满负荷,不是彻底宕机。这在 Anthropic 这边,解决办法是用指数退避重试,或把负载转到更轻的模型 —— 但在短暂的 529 高峰里,组件状态仍可能显示「正常」。
我的 API 调用失败,页面却是绿的 —— 为什么? expand_more
当本页显示 API 正常时,失败的调用多半是 400/401/403/429 —— 你的请求、key、权限或限流的问题,不是 Anthropic 故障。看上面的错误码表;只有 500 和 529 才表示 Anthropic 这边。