Skip to main content
Requests are rate-limited per API key on a fixed one-minute window.

Budget headers

Every /v1 response carries your current budget:
HeaderMeaning
X-RateLimit-Limit-MinuteYour ceiling for the current one-minute window.
X-RateLimit-Remaining-MinuteRequests remaining in the current window.
X-RateLimit-ResetUnix epoch seconds when the window resets.

Exceeding the limit

When you exceed the limit, the API returns 429 with a Retry-After header (integer seconds to wait) and the standard error envelope:
{
  "error": {
    "code": "rate_limited",
    "message": "Per-minute rate limit exceeded."
  }
}
Build for back-off: when you receive a 429, pause for Retry-After seconds before retrying. Watch X-RateLimit-Remaining-Minute to slow down before you hit the ceiling.