API-get-one-pager
Retrieve a complete Notion page with all blocks, databases, and related content in a single API call. Specify recursion depth, include comments, properties, and linked databases for comprehensive access.
Instructions
Recursively retrieve a full Notion page with all its blocks, databases, and related content
Input Schema
Name | Required | Description | Default |
---|---|---|---|
batchSize | No | Batch size for parallel processing (default: 10) | |
includeComments | No | Whether to include comments (default: true) | |
includeDatabases | No | Whether to include linked databases (default: true) | |
includeProperties | No | Whether to include detailed page properties (default: true) | |
maxDepth | No | Maximum recursion depth (default: 5) | |
maxParallelRequests | No | Maximum number of parallel requests (default: 15) | |
page_id | Yes | Identifier for a Notion page | |
runInBackground | No | Process request in background without timeout (default: true) | |
timeoutMs | No | Timeout in milliseconds (default: 300000) |
Input Schema (JSON Schema)
{
"properties": {
"batchSize": {
"description": "Batch size for parallel processing (default: 10)",
"type": "integer"
},
"includeComments": {
"description": "Whether to include comments (default: true)",
"type": "boolean"
},
"includeDatabases": {
"description": "Whether to include linked databases (default: true)",
"type": "boolean"
},
"includeProperties": {
"description": "Whether to include detailed page properties (default: true)",
"type": "boolean"
},
"maxDepth": {
"description": "Maximum recursion depth (default: 5)",
"type": "integer"
},
"maxParallelRequests": {
"description": "Maximum number of parallel requests (default: 15)",
"type": "integer"
},
"page_id": {
"description": "Identifier for a Notion page",
"type": "string"
},
"runInBackground": {
"description": "Process request in background without timeout (default: true)",
"type": "boolean"
},
"timeoutMs": {
"description": "Timeout in milliseconds (default: 300000)",
"type": "integer"
}
},
"required": [
"page_id"
],
"type": "object"
}