notion_retrieve_page_property
Retrieve a specific property from a Notion page, especially for properties with over 25 references. Supports pagination to manage large data sets efficiently.
Instructions
Retrieves a specific property of a Notion page. Use for properties with more than 25 references.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
page_id | Yes | The ID of the page | |
page_size | No | Number of items to return (max 100) | |
property_id | Yes | The ID of the property to retrieve | |
start_cursor | No | Cursor for pagination |
Input Schema (JSON Schema)
{
"properties": {
"page_id": {
"description": "The ID of the page",
"type": "string"
},
"page_size": {
"description": "Number of items to return (max 100)",
"maximum": 100,
"minimum": 1,
"type": "number"
},
"property_id": {
"description": "The ID of the property to retrieve",
"type": "string"
},
"start_cursor": {
"description": "Cursor for pagination",
"type": "string"
}
},
"required": [
"page_id",
"property_id"
],
"type": "object"
}