dero_docs_get_page
Retrieve the full plain-text content and headings of a DERO documentation page using its slug. Supports pagination for long pages and optional product disambiguation.
Instructions
Get a single bundled docs page by slug, with plain-text content and headings.
When to call: AFTER dero_docs_search has returned a candidate slug, OR when you have a known slug from a prior citation. PREFER dero_docs_search first when you only have a topic in mind.
Input Requirements (CRITICAL):
slugMUST be a non-empty doc slug relative to pages/ (e.g.rpc-api/daemon-rpc-api,tutorials/first-app,dero-pay/quick-start).productis OPTIONAL but RECOMMENDED to disambiguate identical slugs across docs sites (derod,tela,hologram,deropay).offsetis OPTIONAL. Long pages (the Captain archive, deep RPC references) are returned in 60000-char chunks; ifcontent_truncatedis true in the response, call again withoffset: next_offsetto fetch the next chunk.
Output: { product, slug, title, headings, content, content_offset, content_length, content_truncated, next_offset, canonical_url, last_updated, source_path }. content_length is the total page size; content_truncated + next_offset signal whether to paginate.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes | Doc slug relative to pages/ (e.g., "rpc-api/daemon-rpc-api", "tutorials/first-app", "dero-pay/quick-start") | |
| product | No | Optional product scope to disambiguate duplicate slugs | |
| offset | No | Byte offset into the page plaintext. Use 0 (or omit) for the first chunk; pass next_offset from a prior response to continue reading a long page. |