AI & LLM Access

Machine-readable Markdown endpoints — llms.txt, llms-full.txt, and per-page .md — that let AI agents read and navigate the Doctavian API docs.

This documentation is built to be read by AI agents and LLM tools, not just humans. Every page is available as clean Markdown, and the whole site is published in the llms.txt format so an agent can discover, fetch, and reason over it without scraping HTML.

If you are an AI agent: fetch /openapi/llms.txt first to discover the page map, then request any individual page as Markdown by appending .md to its URL.

Prompt for your AI agent

Working with an AI assistant (Claude, ChatGPT, Cursor, Copilot, and similar)? Copy the prompt below and paste it into your agent — it teaches the agent to read these docs efficiently. The URLs are filled in with this site's current address automatically.

You have access to the Doctavian API documentation, published in a machine-readable
format designed for AI agents. Read it like this:

1. Fetch the index first: https://your-docs-domain/openapi/llms.txt
   It maps every page with titles and descriptions — use it to locate what you need.

2. Read any page as clean Markdown by appending ".md" to its URL. For example:
   https://your-docs-domain/openapi/latest/reference/Clickwrap/consents-consent-get.md
   Each reference page gives the HTTP method, full path, parameters, and request and
   response schemas (field names, types, required flags, enums, and defaults).

3. Need everything in one request? Fetch:
   https://your-docs-domain/openapi/llms-full.txt

Prefer the index plus specific ".md" pages over the full file to stay token-efficient.
Use the schemas to construct correct API requests. Sample values shown as {{token}}
placeholders are examples — substitute real values before calling the API.

Site map — llms.txt

/openapi/llms.txt is a compact, structured index of every page in the docs — titles, links, and one-line descriptions, grouped exactly like the sidebar. Start here to see what exists and where to look next.

Everything at once — llms-full.txt

/openapi/llms-full.txt concatenates every page into a single Markdown document: the overview, this page, resources, and all API reference endpoints across every published version. Fetch this when you want the entire documentation set in one request.

Any page as Markdown — .md

Append .md to any docs page URL to get just that page as Markdown, with no site chrome. For example:

  • /openapi/latest/resources/openapi/latest/resources.md
  • /openapi/latest/reference/Clickwrap/consents-consent-get/openapi/latest/reference/Clickwrap/consents-consent-get.md

This is the cheapest way to pull a single endpoint's details without downloading the full corpus.

What reference pages contain

API reference pages are generated from our OpenAPI specification and rendered here as an interactive playground. In the Markdown output, each endpoint carries its title, URL, HTTP method, and description.

For complete request and response schemas, parameters, and examples, use the raw OpenAPI document instead — download it from the Resources page, which also links a ready-to-run Postman collection.

Versions

The docs are versioned (for example, latest and v1), and the per-page .md endpoints follow the same version-first URLs you see in the sidebar. Both llms.txt and llms-full.txt include every published version, so pick the URLs under the version you intend to target.

On this page