Rate Limits
Requests are rate limited per account and per IP. Every response includes rate-limit headers so your client can throttle itself before hitting a wall.
Response headers
X-RateLimit-Limit: 300
X-RateLimit-Remaining: 296
X-RateLimit-Reset: 2026-06-06T12:00:00.000Z| Header | Description |
|---|---|
| X-RateLimit-Limit | The maximum number of requests allowed in the current window. |
| X-RateLimit-Remaining | How many requests remain in the current window. |
| X-RateLimit-Reset | ISO 8601 timestamp for when the window resets. |
When you exceed a limit you'll receive a 429 Too Many Requests. Back off until the time in X-RateLimit-Reset before retrying.