# Limites e cotas de taxa da API

Os limites de taxa protegem a estabilidade da plataforma e garantem o uso justo entre todos os clientes. Se você está criando uma integração ou automação usando nossa API, vale a pena entender como eles funcionam.

### Limites por plano

| Plano      | Requisições por minuto | Requisições por dia |
| ---------- | ---------------------- | ------------------- |
| Grátis     | 60                     | 1,000               |
| Pro        | 300                    | 10,000              |
| Business   | 1,000                  | 100,000             |
| Enterprise | Personalizado          | Personalizado       |

### Cabeçalhos de limite de taxa

Toda resposta da API inclui cabeçalhos que mostram seu uso atual:

```
X-RateLimit-Limit: 300
X-RateLimit-Remaining: 241
X-RateLimit-Reset: 1714560000
```

`X-RateLimit-Reset` é um timestamp Unix que indica quando seu limite é reiniciado.

### O que acontece quando você atinge o limite

Requisições que ultrapassam o limite de taxa recebem uma `429 Muitas Requisições` resposta. Seu cliente deve reduzir a taxa e tentar de novo depois do tempo indicado no `Retry-After` cabeçalho.

{% hint style="warning" %}
Se você continuar enviando muitas requisições depois de receber um 429, sua chave de API pode ser banida temporariamente. Sempre implemente backoff exponencial na sua integração.
{% endhint %}

### Aumentando seus limites

Se seu caso de uso precisa de limites maiores, fazer upgrade do seu plano é o primeiro passo. Para necessidades de nível Enterprise, [fale conosco](https://example.com/contact) para discutir cotas personalizadas.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://sexytrees.savimbo.com/practice-guide/pt-br/integracoes/limites-e-cotas-de-taxa-da-api.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
