get_post
Retrieve detailed information about a specific Reddit post using its unique post ID to access content, metadata, and engagement data.
Instructions
Get details of a specific Reddit post
Input Schema
Name | Required | Description | Default |
---|---|---|---|
postId | Yes | Reddit post ID |
Input Schema (JSON Schema)
{
"properties": {
"postId": {
"description": "Reddit post ID",
"type": "string"
}
},
"required": [
"postId"
],
"type": "object"
}