Scrape SDK
For agents

Machine-readable documentation

Use raw Markdown, LLM indexes, JSONL entities, and the schema map for agent retrieval.

View Markdown

The docs site exposes the active navigation through formats that do not require scraping rendered HTML.

EndpointPurpose
/llms.txtSite-level LLM index
/docs/llms.txtDocumentation-only index
/llms-full.txtCombined current documentation text
/feeds/docs.jsonlOne typed JSON object per current page
/schemamap.xmlMachine-readable surface map
/docs/<path>.mdRaw Markdown for one current page

Every rendered page includes Copy Markdown and View Markdown controls.

Prefer canonical URLs

Use current /docs/... URLs. Append .md to get the page as Markdown, for example /docs/quickstart.md.

Retrieve one page

curl https://www.scrape-sdk.com/docs/quickstart.md

The response starts with the page title and canonical URL, then the Markdown body.

Retrieve the full corpus

Use /llms-full.txt for a compact single request or /feeds/docs.jsonl when your indexer wants discrete route records.

curl https://www.scrape-sdk.com/llms.txt
curl https://www.scrape-sdk.com/feeds/docs.jsonl

Coding-agent skill

npx skills add SoulSniper-V2/scrape-sdk --skill scrape-sdk

Agents should refresh /llms.txt (or this page's Markdown) before integrating the package, instead of scraping the HTML docs.