Skip to main content
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.

What is LLMs.txt?

It’s a text file with the official map of the Notifique API. Built for Claude, Cursor, ChatGPT, and other AIs to read before writing code. Think of a city map: you don’t memorize every street, but you check the map before heading out. AI does the same with the API. Root file: https://docs.notifique.dev/llms.txt. A curated map (main links + endpoints). Full documentation stays in the site pages.

What is it for?

Without the map, AI often makes things up:
  • Wrong route (/send-message instead of /v1/whatsapp/messages)
  • JSON field that does not exist
  • Wrong auth header
With LLMs.txt, it uses what is actually documented.

When to use it?

How to use

Paste at the start of your prompt:
Tip: also say your language, framework, and what already exists in the project.

Is it safe?

Yes, for your key:
  • The file is public and does not contain your API Key
  • 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

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

Next steps