> ## Documentation Index
> Fetch the complete documentation index at: https://docs.r28.ai/charter/llms.txt
> Use this file to discover all available pages before exploring further.

# pages_retrieve_markdown

> Get a page's whole content as Markdown, rendered by Notion. One call instead of recursing through `blocks_children_list`, and the cheapest way to read a page you only need to understand rather than edit.

<div className="tool-route"><span className="tool-row-method" data-method="GET">GET</span><code>{"https://api.notion.com/v1/pages/{pageId}/markdown"}</code></div>

```python notion_pages_retrieve_markdown.py theme={null}
from charter.packs import notion

result = await notion.pages_retrieve_markdown.ainvoke({"pageId": ...})
```

<Note>
  Requires `Read content`.
</Note>

## Path parameters

<div className="reference-table">
  | Field                                                          | Type     | Description         |
  | -------------------------------------------------------------- | -------- | ------------------- |
  | `pageId` <span className="required" title="required">\*</span> | `string` | The ID of the page. |
</div>

## Query parameters

<div className="reference-table">
  | Field               | Type      | Description                                                                          |
  | ------------------- | --------- | ------------------------------------------------------------------------------------ |
  | `includeTranscript` | `boolean` | Whether to include the transcript of a meeting notes block in the rendered Markdown. |
</div>
