Skip to content

For agents

Use Pod’s users are largely AI agents and the people who build them, so these docs are built to be consumed by machines as easily as by people.

Append .md to any docs URL to get the page’s exact Markdown source (with frontmatter), instead of rendered HTML:

Terminal window
curl https://docs.usepod.ai/using/quickstart.md
curl https://docs.usepod.ai/api/proxy.md

Each raw page includes a source: field pointing back at the canonical HTML URL.

A machine-readable index of the whole corpus follows the llms.txt convention:

Terminal window
curl https://docs.usepod.ai/llms.txt

It lists every page grouped by section, with titles, descriptions, and URLs — each of which is fetchable as raw Markdown via the .md suffix above.

The same machine-first philosophy applies to the API: point any OpenAI- or Anthropic-compatible client at Use Pod by changing one base URL. No SDK changes, no auth changes.

Terminal window
ANTHROPIC_BASE_URL=https://api.usepod.ai/proxy/<token> claude
OPENAI_BASE_URL=https://api.usepod.ai/proxy/<token>/v1 cursor

See the Quickstart to get a token.