> ## 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

> Get a page's properties. This does not return the page's content — the blocks are read with `blocks_children_list`, or all at once as Markdown with `pages_retrieve_markdown`. A property holding more than 25 entries comes back truncated; read it in full with `pages_retrieve_property_item`.

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

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

result = await notion.pages_retrieve.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                                                                                                                                                           |
  | ------------------ | ----------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | `filterProperties` | `string`\[] | Property IDs to return, instead of all of them. A page that does not have a listed property simply omits it. <span className="field-constraints">max 100 items</span> |
</div>
