reddit_get_post
Retrieve a Reddit post and its comment thread as a flattened, depth-tagged list. Set limits for comment depth and count; unexpanded replies are returned as IDs for further fetching.
Instructions
Get one post together with its comment thread, flattened to a depth-tagged list. Comment trees are the largest thing this API returns, so maxComments and maxDepth are deliberately low: raise them when you actually need the long tail. Replies that were not expanded are reported under unexpanded with their ids, so nothing is dropped silently — pass those ids to reddit_get_more_comments.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| sort | No | Comment ordering. `confidence` is Reddit's default 'best'. | confidence |
| postId | Yes | A post id. Accepts the bare id ("1abc2de"), the fullname ("t3_1abc2de") or the full permalink — they are normalized for you. | |
| maxDepth | No | How deep to walk reply chains (0-10). Defaults to 3. | |
| maxComments | No | Stop after this many comments (1-500). Defaults to 50. |