Rate Limiting
Information about request limits and how to handle them.
Request Limits
| Plan | Requests per Hour |
|---|---|
| Standard | 1,000 |
| Professional | 5,000 |
| Enterprise | Unlimited |
Rate Limit Headers
These response headers are planned for a future release. Currently, exceeding the rate limit returns a 429 status code without additional headers.
| Header | Description |
|---|---|
X-RateLimit-Limit |
Maximum number of requests per hour |
X-RateLimit-Remaining |
Remaining requests in current window |
X-RateLimit-Reset |
Unix timestamp when the limit resets |
Limit Exceeded
When the limit is exceeded, you will receive a 429 response:
{
"error": "Rate limit exceeded"
}