Rate Limit
To ensure optimal performance, we enforce rate limits on API requests:
- Limit: 100 requests per minute for each API key..
- If the limit is exceeded, a
429 Too Many Requests
status code is returned.
Handling Rate Limit Errors
When you receive a 429 Too Many Requests
error:
- Implement Exponential Backoff: Gradually increase the wait time between retries.
- Optimize Your Requests: Ensure you're not making unnecessary API calls.