Rate Limits
All API requests are subject to rate limiting to ensure platform stability.Limits
| Key Type | Requests per Minute | Burst Limit |
|---|---|---|
| Test key | 60 | 10/second |
| Live key | 300 | 30/second |
Rate Limit Headers
Every API response includes these headers:| Header | Description |
|---|---|
X-RateLimit-Limit | Your total requests allowed per minute |
X-RateLimit-Remaining | Requests remaining in the current window |
X-RateLimit-Reset | Unix timestamp when the window resets |
What to Do When Rate Limited
When you receive a429 Too Many Requests response:
- Read the
Retry-Afterheader for the number of seconds to wait - Pause all requests for that duration
- Retry the original request once the window resets
- Use exponential backoff if you receive consecutive 429 responses

