Request rate limit (per key)
Each API key is limited to a number of requests per minute (default 60). On overflow you get HTTP429 with Retry-After plus X-RateLimit-* headers:
Usage quota (per account, monthly)
Each account has a monthly usage cap (USD of billed model usage). When the current month’s usage reaches the cap,/v1 requests are refused with HTTP 429
insufficient_quota until the next month, when it resets:
usage.billed_tokens
on every response). To raise or lift your cap, contact
Mirobody Support.
Client pacing
Client backoff
- On
429 rate_limit_exceeded, respectRetry-After— never retry immediately; double the backoff after two consecutive hits, up to 5 minutes. - On
429 insufficient_quota, do not retry — the cap resets monthly or on a support change; surface it to the operator.