API-retrieve-a-block
Fetch detailed content of a specific block from Notion using its block ID, enabling AI agents to access and manage Notion workspace data efficiently.
Instructions
Notion | Retrieve a block
Input Schema
Name | Required | Description | Default |
---|---|---|---|
block_id | Yes | Identifier for a Notion block |
Input Schema (JSON Schema)
{
"$defs": {},
"properties": {
"block_id": {
"description": "Identifier for a Notion block",
"type": "string"
}
},
"required": [
"block_id"
],
"type": "object"
}