Default limits
Each API key is rate-limited to 60 requests per minute using a sliding window.| Limit | Value |
|---|---|
| Requests per minute | 60 |
| Window | 1 minute (sliding) |
| Scope | Per API key |
Rate limit headers
When you hit the rate limit, the API returns:| Header | Description |
|---|---|
Retry-After | Seconds until the rate limit resets |
Handling rate limits
Best practices
- Spread requests evenly — avoid bursting 60 requests at once and then waiting
- Use exponential backoff — when retrying after a 429, increase the wait time with each retry
- Use separate keys for separate services — if you have multiple integrations, create a key for each to get independent rate limits

