Skip to content

For agents

This site is agent-readable by design. Anything a human can read in the rendered HTML, an agent can read in plain markdown or text.

PathWhat it is
/llms.txtCompact index — title, description, top sections, links. Follows the llms.txt convention.
/llms-full.txtFull corpus concatenation — every page’s markdown in one file.
/.well-known/llms.txtMirror for crawlers that check the .well-known prefix.
/.well-known/llms-full.txtMirror.
/sitemap-index.xmlStandard sitemap.

Every doc page has a .md twin at the same path. Append .md to any URL:

  • https://developer.stablecoinx.com/features/session-payment/ → HTML
  • https://developer.stablecoinx.com/features/session-payment.md → raw markdown

Agents don’t need to scrape the HTML — they can fetch the source directly.

llms.txt, llms-full.txt, and .md twins are served with Cache-Control: public, max-age=3600, must-revalidate. Treat them as fresh within the hour.

  • Headings are stable anchor targets — not renamed once published.
  • Code blocks are fenced with language tags so agents can extract them reliably.
  • Tables use GitHub-flavored markdown — parseable without a renderer.

For programmatic access to the platform itself (rather than just the docs), see the MCP API reference and the MCP Server feature page.