get_reddit_post_details
Retrieve comprehensive details about any Reddit post by providing its unique post ID to access information such as content, author, votes, and comments.
Instructions
Get detailed information about a specific Reddit post
Args: post_id: The Reddit post ID
Returns: Human readable string containing detailed post information
Input Schema
Name | Required | Description | Default |
---|---|---|---|
post_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"post_id": {
"title": "Post Id",
"type": "string"
}
},
"required": [
"post_id"
],
"type": "object"
}