get_reddit_post
Retrieve a single Reddit post by subreddit and post ID, returning its title, author, content, scores, flags, and engagement analysis. Solve the need for full post details without comments.
Instructions
Get a single post by subreddit + post id: title, author, self-text or link content, score, upvote ratio, comment count, flair/flags, and an engagement analysis. Read-only; works anonymously. Returns the post only — use get_post_comments for its comment thread. Do NOT use this to list a subreddit's posts (use browse_subreddit / get_top_posts) or to find posts by keyword (use search_reddit).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| post_id | Yes | Base36 post id — the segment after /comments/ in a permalink like reddit.com/r/<sub>/comments/<post_id>/... (e.g. '1abc23'). With or without a t3_ prefix. | |
| subreddit | Yes | The subreddit the post lives in, without the r/ prefix (e.g. 'programming'). |