API-retrieve-a-block
Fetch specific content from Notion by retrieving a block using its unique identifier. Ideal for AI assistants to efficiently access and process information stored in Notion databases.
Instructions
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"
}