get_post_comments
Retrieve comments from a Reddit post by specifying the post ID and desired comment limit. This tool simplifies accessing and analyzing post discussions on Reddit.
Instructions
Get comments from a post
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Number of comments to return (default: 10) | |
post_id | Yes | ID of the post |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 10,
"description": "Number of comments to return (default: 10)",
"maximum": 100,
"minimum": 1,
"type": "integer"
},
"post_id": {
"description": "ID of the post",
"type": "string"
}
},
"required": [
"post_id"
],
"type": "object"
}