ConvoiAi
Browse docs

Reference

Rate Limits

Per-token rate limits and monthly quotas.

3 min read

Defaults

Default limits are 60 requests per minute per token for read endpoints and 20 per minute for write endpoints. Limits are documented per endpoint in the API Reference.

Headers

Every response includes the current rate-limit window state so clients can self-throttle.

http
X-RateLimit-Limit: 60
X-RateLimit-Remaining: 47
X-RateLimit-Reset: 1714999740

Retry-After

When you exceed a limit, the API returns 429 with a Retry-After header (seconds). Honor it; clients that retry without backoff are temporarily blocked.

Related in Reference