rate-limited
HTTP status: 429 Too Many Requests
Type URI: https://docs.evinor.ai/problems/rate-limited
You exceeded the per-key request budget for the current one-minute window.
Response headers
Retry-After— seconds to wait before retrying.RateLimit-Limit/RateLimit-Remaining/RateLimit-Reset— the budget, what's left, and the Unix-seconds reset time.
How to resolve
- Wait the number of seconds in
Retry-After, then retry. - Watch
RateLimit-Remainingand slow down before you hit zero. - Add randomized backoff across concurrent workers so they don't retry in lockstep.
- Prefer webhooks over tight polling loops.
See Rate limits for the full budget and header semantics.