Docs · Getting started

Rate limits and quotas

Per-minute rate limits and per-month quotas — both enforced.

GET /v1/me

Each plan has two limits: requests per minute (token bucket) and requests per calendar month (hard quota). Every response includes x-ratelimit-limit, x-ratelimit-remaining, and x-ratelimit-reset headers. When you hit the per-minute cap the API returns 429 with a retry-after header.

Request

# Headers returned on every authenticated response:
x-ratelimit-limit: 60
x-ratelimit-remaining: 47
x-ratelimit-reset: 1747386000

Response

{
  "detail": "Rate limit exceeded"
}
// HTTP 429 with retry-after header

Related