Rate Limits
The API enforces rate limiting to ensure fair usage.
Limits
| Window | Max Requests |
|---|---|
| 1 minute | 60 requests |
Exceeded Limit
When the limit is exceeded, the API returns 429 Too Many Requests:
{
"message": "Too Many Attempts."
}Best Practices
- Cache responses where possible to reduce request count
- Implement exponential backoff when receiving
429responses - Use
per_page(max100) to reduce total number of requests needed