GET
notion_pages_retrieve_property_item.py
Requires
Read content. Pages by cursor: next_cursor is sent back as start_cursor.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
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.
from charter.packs import notion
result = await notion.pages_retrieve_property_item.ainvoke({"pageId": ..., "propertyId": ...})
Read content. Pages by cursor: next_cursor is sent back as start_cursor.| Field | Type | Description |
|---|---|---|
pageId * | string | The ID of the page. |
propertyId * | string | The ID or name of the property to retrieve. |
| 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. ≥ 1; ≤ 100 |
Was this page helpful?