Rate limits
Read the response headers and pace API requests safely.
Per-token request limit
Each token can make up to 100 requests per minute. You can have up to 10 active tokens.
Authenticated responses include:
| Header | Meaning |
|---|---|
X-RateLimit-Limit | Requests allowed in the current minute. |
X-RateLimit-Remaining | Requests remaining in the current minute. |
X-RateLimit-Reset | Unix timestamp when the current window resets. |
Retry-After | How long to wait after a 429 response. |
When the limit is exceeded, the API returns 429 RATE_LIMIT_EXCEEDED. Wait for Retry-After before retrying.
Retry guidance
- Reads are safe to retry after a timeout.
- Do not retry
UNAUTHORIZED,SCOPE_REQUIRED, orVALIDATION_ERRORuntil the request is corrected. - For
RATE_LIMIT_EXCEEDED, wait forRetry-Afterbefore retrying.