read_confluence_page
Retrieve Confluence page content by page ID or title with space key, returning native XHTML or Markdown. Read page text for documentation and context.
Instructions
Retrieves the content of a Confluence page. You can specify the page by its ID or by its title and space key. The content can be returned in raw storage format (XHTML) or converted to Markdown. Use this for quickly reading the text content of a page.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| title | No | The title of the page. Must be used in conjunction with `spaceKey`. | |
| expand | No | A comma-separated list of properties to expand in the response (e.g., "body.storage,version,space"). | body.storage,version,space |
| format | No | The desired format for the page content. `storage` returns Confluence's native XHTML format. `markdown` converts the content to Markdown. | storage |
| pageId | No | The unique identifier of the Confluence page (e.g., "12345678"). | |
| spaceKey | No | The key of the space where the page is located (e.g., "DEV"). Required when using `title`. |