What does HTTP 429 “Too Many Requests” mean and how do I avoid it?
1 — Default sandbox & production limits
Endpoint class
Production
Sandbox
2 — Anatomy of a 429 response
HTTP/1.1 429 Too Many Requests
Retry-After: 35 ← Seconds until quota resets
RateLimit-Limit: 60 ← Quota for this window
RateLimit-Remaining: 03 — Strategies to stay below the limit
Technique
How it helps
4 — Reference back-off snippet (Node.js)
5 — Debug checklist
Last updated