retrieve_block
Fetch a specific block from Notion by its unique ID, enabling integration with AI assistants and efficient data retrieval for automation workflows.
Instructions
Retrieve a block from Notion by ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
blockId | Yes | The ID of the block to retrieve |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"blockId": {
"description": "The ID of the block to retrieve",
"type": "string"
}
},
"required": [
"blockId"
],
"type": "object"
}