get_reddit_post
Fetch specific Reddit posts by providing the subreddit name and post ID to retrieve content and metadata.
Instructions
Get a Reddit post
Input Schema
Name | Required | Description | Default |
---|---|---|---|
post_id | Yes | The ID of the post to fetch | |
subreddit | Yes | The subreddit to fetch posts from |
Input Schema (JSON Schema)
{
"properties": {
"post_id": {
"description": "The ID of the post to fetch",
"type": "string"
},
"subreddit": {
"description": "The subreddit to fetch posts from",
"type": "string"
}
},
"required": [
"subreddit",
"post_id"
],
"type": "object"
}