# Limitaciones

La API Pública tiene la limitación de atender solo 3 solicitudes por minuto desde una misma IP, entienda que esta limitación es independiente del hecho de que la consulta haya tenido éxito al encontrar el CNPJ. Después de superar este límite, el solicitante tendrá que esperar a que se completen los 60 segundos para poder hacer la próxima solicitud.

El usuario recibirá un mensaje de error y el código de estado HTTP 429:

```shell
{
  "status": 429,
  "titulo": "Demasiadas solicitudes",
  "detalles": "Se ha excedido el límite máximo de 3 consultas por minuto. La liberación ocurrirá en Thu Jun 03 2021 16:15:00 GMT-0300 (Horario Estándar de Brasilia)"
}
```

Si la API identifica que el usuario ha realizado más de 360 consultas por hora (lo permitido son 3 x 60 = 180), el usuario será penalizado y no podrá hacer consultas durante 1 hora. Si esta penalización persiste, se renovará por otra hora. Ejemplo:

```shell
{
  "status": 429,
  "titulo": "Demasiadas solicitudes",
  "detalles": "Se ha excedido el límite máximo de errores 429 por hora. La liberación ocurrirá en Thu Jun 03 2021 16:15:00 GMT-0300 (Horario Estándar de Brasilia)"
}
```


---

# 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://docs.cnpj.ws/es/referencia-de-api/api-publica/limitacoes.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.
