API-retrieve-a-comment
Retrieve comments from a Notion block or page by specifying its block ID. Supports pagination with start cursor and page size to manage large datasets efficiently.
Instructions
Notion | Retrieve comments
Input Schema
Name | Required | Description | Default |
---|---|---|---|
block_id | Yes | Identifier for a Notion block or page | |
page_size | No | The number of items from the full list desired in the response. Maximum: 100 | |
start_cursor | No | If supplied, this endpoint will return a page of results starting after the cursor provided. If not supplied, this endpoint will return the first page of results. |
Input Schema (JSON Schema)
{
"$defs": {},
"properties": {
"block_id": {
"description": "Identifier for a Notion block or page",
"type": "string"
},
"page_size": {
"description": "The number of items from the full list desired in the response. Maximum: 100",
"format": "int32",
"type": "integer"
},
"start_cursor": {
"description": "If supplied, this endpoint will return a page of results starting after the cursor provided. If not supplied, this endpoint will return the first page of results.",
"type": "string"
}
},
"required": [
"block_id"
],
"type": "object"
}