API-retrieve-a-page
Fetch specific Notion page data by providing the page ID and optional property filters using a read-only server designed for efficient content retrieval.
Instructions
Retrieve a page
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filter_properties | No | A list of page property value IDs associated with the page. Use this param to limit the response to a specific page property value or values. To retrieve multiple properties, specify each page property ID. For example: `?filter_properties=iAk8&filter_properties=b7dh`. | |
page_id | Yes | Identifier for a Notion page |
Input Schema (JSON Schema)
{
"$defs": {},
"properties": {
"filter_properties": {
"description": "A list of page property value IDs associated with the page. Use this param to limit the response to a specific page property value or values. To retrieve multiple properties, specify each page property ID. For example: `?filter_properties=iAk8&filter_properties=b7dh`.",
"type": "string"
},
"page_id": {
"description": "Identifier for a Notion page",
"type": "string"
}
},
"required": [
"page_id"
],
"type": "object"
}