Operations
Rate limits
Requests are rate-limited per client. The token endpoint has a tight budget; everything else shares a generous one.
Limits
30/min
600/min
POST /v1/auth/tokenAll other /v1/*
| Endpoint | Limit |
|---|---|
POST /v1/auth/token | 30 / minute / client |
All other /v1/* | 600 / minute / client |
Rate-limit headers
Every response returns the standard RateLimit-* headers. Exceeding a limit returns 429 rate_limited.
RateLimit-Limit: 600
RateLimit-Remaining: 597
RateLimit-Reset: 42Cache your token
Cache your access token instead of minting one per call — that keeps you well under the 30/min auth limit. When you do hit a 429, back off using the RateLimit-Reset header.