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

# Notifique LLMs.txt

> Mapa API oficial en texto sin formato para que la IA genere código con menos errores.

<Tip>
  LLMs.txt is the **API map for AI**: a curated text file with real routes, links, and endpoints so AI stops inventing paths or fields.
</Tip>

## ¿Qué es LLMs.txt?

Es un archivo de texto con el **mapa oficial** de la API Notifique. Creado para que Claude, Cursor, ChatGPT y otras IA lean **antes** de escribir código.

Piense en un mapa de la ciudad: no memoriza todas las calles, pero consulta el mapa antes de salir. La IA hace lo mismo con la API.

Archivo raíz: [https://docs.notifique.dev/llms.txt](https://docs.notifique.dev/llms.txt). Un mapa **curado** (enlaces principales + puntos finales). La documentación completa permanece en las páginas del sitio.

## ¿Para qué sirve?

Sin el mapa, la IA a menudo **inventa cosas**:

* Ruta incorrecta (`/send-message` en lugar de `/v1/whatsapp/messages`)
* Campo JSON que no existe
* Encabezado de autenticación incorrecto

Con LLMs.txt, utiliza **lo que realmente está documentado**.

## ¿Cuándo usarlo?

| Situation                                  | Use LLMs.txt?                                   |
| ------------------------------------------ | ----------------------------------------------- |
| Ask AI for code                            | **Yes**                                         |
| AI keeps getting endpoints or fields wrong | **Yes**                                         |
| Quick integration without reading all docs | **Yes**                                         |
| Execute a send from IDE chat               | No (use [MCP](/es/build-with-ai/mcp-notifique)  |
| Specific repeatable task                   | Combine with \[Skill]\(/es/build-with-ai/skills |

## Cómo utilizar

Pegue al comienzo de su mensaje:

Tip: also say your language, framework, and what already exists in the project.

## Is it safe?

Yes, for your key:

* El archivo es **público** y **no** contiene su Clave API
* It only **explains** the API. It does not execute anything
* When calling the API, you use your key as usual (`.env`, MCP, or dashboard)

## LLMs.txt, Skill, and MCP

| Tool         | Role                      | When to use                    |
| ------------ | ------------------------- | ------------------------------ |
| **LLMs.txt** | Big picture of the API    | Whenever you generate code     |
| **Skill**    | Step-by-step for one task | Specific, repeatable task      |
| **MCP**      | Execute in the IDE        | Test from chat without Postman |

Common flow: LLMs.txt for context, Skill for the task, MCP (or your backend) to run it.

***

## Próximos pasos

* [Skills](/es/build-with-ai/skills): recipes per task
* [Notifique MCP](/es/build-with-ai/mcp-notifique): run in the IDE
* \[Construir con IA]\(/es/build-with-ai/hub
* [Error responses](/es/guides/conceitos/resposta-de-erros): HTTP codes and `code`
