Practice free →
HomeClaude AIclaudearchitectclaudeai_production › On HTTP 429 from the Anthropic API, you should:

On HTTP 429 from the Anthropic API, you should:

ARetry immediately, indefinitely
BSwitch to a different model permanently
CWait with exponential backoff + jitter
DCancel the request and alert the user
Answer & Solution
Correct answer: C. Wait with exponential backoff + jitter
429 = rate limit. Best practice: exponential backoff (1s, 2s, 4s...) with random jitter to avoid thundering-herd retries.
Solve this in the app — Claude AI practice & 24k+ MCQs →
Related questions