Understand your plan limits, quotas, and billing information.
Each plan includes a monthly API call quota. Quotas reset on the 1st of each month at 00:00 UTC.
| Plan | Monthly Quota | RPS Limit |
|---|---|---|
| Free | 1,000 | 10 |
| Plus | 10,000 | 50 |
| Pro | 100,000 | 200 |
| Enterprise | Unlimited | Custom |
Rate limits protect our infrastructure and ensure fair usage. Limits are applied per API key.
When you exceed your monthly quota:
When you exceed the RPS rate limit:
HTTP/1.1 429 Too Many RequestsImplement exponential backoff (1s, 2s, 4s, 8s) and retry with jitter.
Quotas reset on the first day of each month.
1st of month, 00:00 UTCRate limits use a sliding window.
Rolling 1-second windowEvery API response includes headers to help you track your usage and limits.
| Header | Description |
|---|---|
x-ratelimit-limit | Maximum requests allowed per window |
x-ratelimit-remaining | Remaining requests in current window |
x-ratelimit-reset | Unix timestamp when window resets |
x-quota-limit | Monthly quota limit |
x-quota-remaining | Remaining API calls this month |
x-quota-reset | ISO 8601 date when quota resets |
Example Response Headers:
HTTP/1.1 200 OK x-ratelimit-limit: 50 x-ratelimit-remaining: 47 x-ratelimit-reset: 1706140800 x-quota-limit: 10000 x-quota-remaining: 8542 x-quota-reset: 2026-02-01T00:00:00Z
Upgrade your plan for increased quotas, higher rate limits, and priority support.