> ## Documentation Index
> Fetch the complete documentation index at: https://docs.alana.shopping/llms.txt
> Use this file to discover all available pages before exploring further.

# Limites de Taxa

> Políticas de limitação de taxa e throttling da API.

## Limites por plano

| Plano      | Requisições/minuto | Requisições de IA/minuto |
| ---------- | :----------------: | :----------------------: |
| Standard   |         60         |            10            |
| Pro        |         300        |            50            |
| Business   |        1,000       |            200           |
| Enterprise |    Personalizado   |       Personalizado      |

## Cabeçalhos de limite de taxa

Cada resposta inclui informações sobre o limite de taxa:

```
X-RateLimit-Limit: 300
X-RateLimit-Remaining: 287
X-RateLimit-Reset: 1708012800
```

## Limites excedidos

Quando o limite de taxa é excedido, a API retorna `429 Too Many Requests`:

```json theme={null}
{
  "error": {
    "code": "RATE_LIMITED",
    "message": "Rate limit exceeded. Retry after 23 seconds.",
    "retryAfter": 23
  }
}
```

<Tip>
  Implemente backoff exponencial na sua integração. Comece com o valor `retryAfter` e dobre-o em falhas consecutivas.
</Tip>
