get_post_comments
Retrieve comments from a Reddit post using the post ID, with options to sort by best, top, new, controversial, or old.
Instructions
Get comments from a Reddit post
Input Schema
Name | Required | Description | Default |
---|---|---|---|
postId | Yes | Reddit post ID | |
sort | No | Sort order for comments | best |
Input Schema (JSON Schema)
{
"properties": {
"postId": {
"description": "Reddit post ID",
"type": "string"
},
"sort": {
"default": "best",
"description": "Sort order for comments",
"enum": [
"best",
"top",
"new",
"controversial",
"old"
],
"type": "string"
}
},
"required": [
"postId"
],
"type": "object"
}