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.
Discovery files
Section titled “Discovery files”| Path | What it is |
|---|---|
/llms.txt | Compact index — title, description, top sections, links. Follows the llms.txt convention. |
/llms-full.txt | Full corpus concatenation — every page’s markdown in one file. |
/.well-known/llms.txt | Mirror for crawlers that check the .well-known prefix. |
/.well-known/llms-full.txt | Mirror. |
/sitemap-index.xml | Standard sitemap. |
Markdown twins
Section titled “Markdown twins”Every doc page has a .md twin at the same path. Append .md to any URL:
https://developer.stablecoinx.com/features/session-payment/→ HTMLhttps://developer.stablecoinx.com/features/session-payment.md→ raw markdown
Agents don’t need to scrape the HTML — they can fetch the source directly.
Caching
Section titled “Caching”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.
Conventions
Section titled “Conventions”- 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.