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 這邊。