Default behavior
Rate limits are evaluated by IP address and API key. When a request is allowed, the response includes rate-limit headers for the active API-key bucket when available.X-RateLimit-Reset is a Unix timestamp in seconds.
Limit exceeded
When a request exceeds the active limit, the API returns429 Too Many Requests.
Retry-After seconds before retrying.
Integration guidance
- Use pagination instead of large repeated requests.
- Back off when
X-RateLimit-Remainingis low. - Retry
429responses only afterRetry-After. - Include the
traceIdwhen contacting support about rate-limit behavior.