Get page
get_pageFetch a page's full Markdown content and metadata, with options to include child pages, comments, and embedded images.
Instructions
Read a page including its full Markdown content and current version number. The page carries comment_count / unresolved_comment_count / last_comment_at — if comment_count > 0 there is a discussion; set include_comments to read it. include_children returns the page's child pages (titles + slugs, no content) — useful for 'folder' pages whose own content is empty but which organise sub-pages. include_images returns any images embedded in the page as viewable image blocks, so you can actually SEE a screenshot the page references instead of only its URL.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | Yes | Page UUID or "workspaceSlug/spaceSlug/pageSlug" path | |
| include_images | No | When true, also return images embedded in the page as image blocks you can view (max 5). Off by default — images are large, so ordinary reads stay cheap. | |
| include_children | No | When true, also return the page's immediate child pages (id, title, slug — no content). | |
| include_comments | No | When true, also return the page's comments (threaded) alongside the page. |