Get Post Comments
reddit_get_commentsFetch top-level comments from any Reddit post to gauge community sentiment, identify buyer language, and find engagement opportunities.
Instructions
Fetch top-level comments from a specific Reddit post.
Use this to read the full discussion in a thread — understand community sentiment, find buyer language, or identify engagement opportunities.
Args:
subreddit (string): Subreddit name without r/ prefix
post_id (string): Post ID from the URL (e.g., for reddit.com/r/nursing/comments/1j8k3f2/..., the ID is "1j8k3f2")
sort (string): "best", "top", "new", "controversial", "old" (default: "best")
limit (number): Top-level comments to return, 1-50 (default: 20)
response_format (string): "markdown" or "json" (default: "markdown")
Returns: Top-level comments with author, score, body text, and timestamps.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| sort | No | Comment sort order | best |
| limit | No | Number of top-level comments to return | |
| post_id | Yes | The post ID (the alphanumeric string from the post URL, e.g., '1j8k3f2') | |
| subreddit | Yes | Subreddit name without r/ prefix | |
| response_format | No | Output format: markdown or json | markdown |