Pular para o conteúdo principal

AI Agent Integration

Every page in this documentation is available as plain Markdown by appending .md to the URL. This makes it easy for AI agents, LLM-based tools, and developer assistants to read and process the content without parsing HTML.

How it works

Add .md to the end of any page URL in your browser or HTTP client:

Page URLMarkdown URL
/developers/api-reference/developers/api-reference.md
/use-cases/onboarding/brasil/use-cases/onboarding/brasil.md
/capabilities/liveness/capabilities/liveness.md

The response is the raw Markdown source of the page — no navigation, no sidebar, no HTML wrapper.

Use cases

  • AI coding assistants — point your assistant at a .md URL to give it accurate, up-to-date context about an endpoint, capability or use case.
  • LLM prompts — fetch a page as Markdown and include it directly in a prompt for summarization, translation or code generation.
  • RAG pipelines — use .md URLs as the ingestion source for retrieval-augmented generation systems, keeping your knowledge base in sync with the live docs.
  • Automated scripts — parse documentation content without an HTML scraper.

Example

curl https://docs.unico.io/developers/api-reference/authentication.md

Returns the full Markdown source of the Authentication page, ready to be fed into any LLM or processing pipeline.