Rate Limit Exceeded
Rate Limit Exceeded
https://docs.username.dev/errors/rate-limit-exceeded429When it occurs
You’re exceeding the rate limit of 5 requests per second per API key. Making requests faster than this limit will trigger this error.
How to fix
- Implement exponential backoff retry logic - The response includes a
retryAfterfield (in seconds) indicating when to retry - Implement request queuing - Queue requests and process them at a rate that doesn’t exceed 5 RPS
- For high-volume use cases - Contact us for enterprise rate limit options
Related documentation
- Understanding error responses - Learn about RFC 7807 Problem Details format and how to handle rate limiting programmatically
- Rate limits - Learn more about rate limiting