Skip to content
HooprB2B

Operations

Rate limits

Requests are rate-limited per client. The token endpoint has a tight budget; everything else shares a generous one.

Limits

POST /v1/auth/tokenAll other /v1/*
EndpointLimit
POST /v1/auth/token30 / 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: 42

Cache 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.