Limits by plan
Rate limit headers
Every response includes rate limit information:Exceeded limits
When rate-limited, the API returns429 Too Many Requests:
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Bem-vindo ao nosso novo hub de docs! Central de Ajuda + Docs para Desenvolvedores em um só lugar.
API rate limiting and throttling policies.
| Plan | Requests/minute | AI requests/minute |
|---|---|---|
| Standard | 60 | 10 |
| Pro | 300 | 50 |
| Business | 1,000 | 200 |
| Enterprise | Custom | Custom |
X-RateLimit-Limit: 300
X-RateLimit-Remaining: 287
X-RateLimit-Reset: 1708012800
429 Too Many Requests:
{
"error": {
"code": "RATE_LIMITED",
"message": "Rate limit exceeded. Retry after 23 seconds.",
"retryAfter": 23
}
}
retryAfter value and double it on consecutive failures.