Rate Limits
To ensure fair usage, the API enforces rate limits on all endpoints.
Default Limits
100 requests per minute per API token
Rate Limit Headers
Every response includes these headers:
| Header | Description |
|---|---|
X-RateLimit-Limit | Maximum requests allowed |
X-RateLimit-Remaining | Requests remaining in window |
X-RateLimit-Reset | When the limit resets (ISO 8601) |
Handling Rate Limits
When you exceed the rate limit, you'll receive a 429 Too Many Requests response.
Wait until the reset time before making more requests.
Best Practice: Implement exponential backoff in your client to handle rate limits gracefully.