PaPoo
cover

Error: 429 {"type":"error","error":{"type":"rate_limit_error":"Rate limited"} で止まるときに、まず確認したいこと

同じ形のエラーが出ているなら、少なくとも今回の issue 群では Claude Code 側から「サーバーが一時的にリクエストを制限している」と案内されていました。報告されている文言は、どちらも API Error: Server is temporarily limiting requests (not your usage limit) か、あるいは Rate limited です。対象になっている issue は #73509#73151 です。

この症状が自分のケースかどうかを見るなら、まずエラー本文が一致するかを見ます。今回の報告では、少なくとも次の形が共通していました。

Error: 429 {"type":"error","error":{"type":"rate_limit_error","message":"Rate limited"},"request_id":"req_011CccXdaUjc5Zxkos5BkYez"}
    at generate (B:/~BUN/root/src/entrypoints/cli.js:11:53135)

別の報告でも、同じく 429 と rate_limit_error が出ています。

Error: 429 {"type":"error","error":{"type":"rate_limit_error","message":"Rate limited"},"request_id":"req_011CccXdaUjc5Zxkos5BkYez"}
    at generate (B:/~BUN/root/src/entrypoints/cli.js:11:53135)

ただし、これだけで原因を断定はできません。少なくとも issue の本文とコメントから分かるのは、「利用上限に達した」というより「サーバー側が一時的に制限している」扱いで見られていたことです。コメントでも Server is temporarily limiting requests (not your usage limit) と書かれていました。

手元で確認できた CLI の状態は次のとおりです。

$ claude --version
2.1.207 (Claude Code)
$ claude doctor
Claude Code doctor

Running: native (2.1.207)
Commit: bc512d563325
Platform: darwin-arm64
Path: ~/.local/share/claude/versions/2.1.207
Config install method: native
Search: OK (bundled)
Auto-updates: enabled
Auto-update channel: latest
Last update attempt: none recorded

Multiple installations found
- npm-global at /usr/local/bin/claude
- native at ~/.local/bin/claude

Remote Control
Control this session from claude.ai/code or the Claude mobile app

1 warning found
- Leftover npm global installation at /usr/local/bin/claude
  Fix: Run: npm -g uninstall @anthropic-ai/claude-code

For a full setup checkup that can also fix issues, run /doctor in a Claude Code session.

この出力から実際に言えるのは、native の 2.1.207 が動いていて、同時に npm-global の残骸がある、ということまでです。ですが、今回の 429 がその二重インストールに起因するかどうかは、渡された情報だけでは分かりません。issue 側にも、その線を直接示す記述はありませんでした。

現時点で書ける範囲はここまでです。少なくとも今回の症状は、Error: 429 ... rate_limit_errorServer is temporarily limiting requests が出るケースとして、#73509#73151 にまとまっていました。どちらも closed ですが、コメント上は重複扱いで片方に集約されており、個別の恒久対処まではこの情報からは確認できませんでした。


検証環境

claude --version : 2.1.207 (Claude Code)
OS          : Darwin 25.3.0 (arm64)
Python      : 3.14.2
検証日時    : 2026-08-16T14:06:34+09:00

参照した Issue(anthropics/claude-code): #73509, #73151

同じ著者の記事