Reference
Rate Limits
Requests are counted per API key per calendar day (UTC). Limits reset at midnight UTC.
Default limits
| Plan | Requests / day |
|---|---|
| Default | 10,000 |
| Enterprise | Custom — contact us |
Rate limit headers
| Header | Description |
|---|---|
X-RateLimit-Limit | Your daily request allowance |
X-RateLimit-Remaining | Requests remaining today |
X-RateLimit-Reset | Unix timestamp when the limit resets (midnight UTC) |
When you hit the limit
{
"error": "Rate limit exceeded",
"code": "RATE_LIMITED",
"retryAfter": 3600
}
Implement exponential backoff starting at 1 second. Double the delay after each
429 until successful.