Default Limits
The V2 API enforces the following rate limits:| Limit | Value |
|---|---|
| Requests per second | 100 per API key |
Rate Limit Headers
Rate limit information is included in response headers:| Header | Description |
|---|---|
X-RateLimit-Limit | Maximum requests allowed per window |
X-RateLimit-Remaining | Requests remaining in current window |
X-RateLimit-Reset | Unix timestamp when the window resets |
Exceeding Limits
When you exceed the rate limit, the API returns a429 Too Many Requests response:
Best Practices
- Implement exponential backoff when receiving 429 responses
- Cache responses where appropriate
- Use pagination to reduce the number of requests
