get_post_comments
Fetch and structure comments and replies for any Reddit post using its post_id. Optionally sort results by 'best,' 'top,' or 'new' for organized viewing.
Instructions
๐ฌ Get comments for a Reddit post ๐ฏ What it does: Fetches comments and replies for any Reddit post ๐ Required: post_id (Reddit post ID, found in post URLs) โ๏ธ Optional: sort ('best', 'top', 'new') ๐ก Examples: โข Get comments: {"post_id": "1n1nlse"} โข Best comments: {"post_id": "1n1nlse", "sort": "best"} โข New comments: {"post_id": "1n1nlse", "sort": "new"} ๐ Output: Formatted comment tree with author, score, timestamp, and nested replies
Input Schema
Name | Required | Description | Default |
---|---|---|---|
post_id | Yes | Reddit post ID to get comments for | |
sort | No | Sort order (default: best) | best |