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

> Read one property of a page in full. Worth reaching for when a title, text, relation or people property holds more than the 25 entries a page object carries — those come back paginated here.

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

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

result = await notion.pages_retrieve_property_item.ainvoke({"pageId": ..., "propertyId": ...})
```

<Note>
  Requires `Read content`. Pages by cursor: `next_cursor` is sent back as `start_cursor`.
</Note>

## Path parameters

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

## Query parameters

<div className="reference-table">
  | Field         | Type      | Description                                                                                    |
  | ------------- | --------- | ---------------------------------------------------------------------------------------------- |
  | `startCursor` | `string`  | A `next_cursor` from a previous response, for the properties that paginate.                    |
  | `pageSize`    | `integer` | How many entries to return. Maximum 100. <span className="field-constraints">≥ 1; ≤ 100</span> |
</div>
