API-retrieve-a-page-property
Fetch specific property data from a Notion page by providing the page and property IDs. Supports paginated properties for efficient retrieval of large datasets.
Instructions
Notion | Retrieve a page property item
Input Schema
Name | Required | Description | Default |
---|---|---|---|
page_id | Yes | Identifier for a Notion page | |
page_size | No | For paginated properties. The max number of property item objects on a page. The default size is 100 | |
property_id | Yes | Identifier for a page [property](https://developers.notion.com/reference/page#all-property-values) | |
start_cursor | No | For paginated properties. |
Input Schema (JSON Schema)
{
"$defs": {},
"properties": {
"page_id": {
"description": "Identifier for a Notion page",
"type": "string"
},
"page_size": {
"description": "For paginated properties. The max number of property item objects on a page. The default size is 100",
"format": "int32",
"type": "integer"
},
"property_id": {
"description": "Identifier for a page [property](https://developers.notion.com/reference/page#all-property-values)",
"type": "string"
},
"start_cursor": {
"description": "For paginated properties.",
"type": "string"
}
},
"required": [
"page_id",
"property_id"
],
"type": "object"
}