Skip to main content
These docs are built to be driven by AI. Point your assistant at them and it can answer integration questions with the exact contract, not a guess.

Ask AI on any page

Every page has a contextual menu next to its title: copy the page as Markdown, view it as plain text, open it directly in ChatGPT or Claude with the page pre-loaded as context, or copy the MCP server URL and one-click connect to Cursor or VS Code.

Connect via MCP

These docs run a hosted Model Context Protocol server, generated from the same pages and OpenAPI contract you see here. Point any MCP-capable client at it and your agent can search the docs and read the API surface as live tools, always current with what ships. Add it as a remote server in your client’s MCP config:
For Cursor and VS Code, use the Connect action in any page’s contextual menu to install it in one click, or Copy MCP server URL to paste it wherever your tool expects a remote MCP endpoint. The server is read-only: it exposes the public docs and the /v1 contract, never your keys or data.

Plain text for LLMs

When deployed, the docs serve the standard LLM endpoints:
  • /llms.txt, an index of every page with one-line summaries.
  • /llms-full.txt, the entire docs corpus as one plain-text file.

The machine-readable contract

The single best artifact to hand an agent is the OpenAPI document, served publicly with no key:
It is hand-maintained against what the service actually enforces, the same auth header, the same scopes, the same endpoints, and it is the source these reference pages render from.
The docs and the OpenAPI document are read-only context. Your API key is yours: it is never part of the docs, the contract, or any example on this site. Keys go in your server’s environment, not in a prompt.
  • Quick start, the five calls an agent should wire first.
  • Webhooks, signature verification your agent must not skip.