fetch_post_details
Retrieve detailed WallStreetBets post data, including top comments and extracted links, using a unique Reddit post ID. Cached results optimize performance for real-time market analysis.
Instructions
Fetch detailed information about a specific WSB post including top comments. Caches results for 5 minutes.
Args:
post_id: Reddit post ID
Returns:
Detailed post data including comments and extracted links
Input Schema
Name | Required | Description | Default |
---|---|---|---|
post_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"post_id": {
"title": "Post Id",
"type": "string"
}
},
"required": [
"post_id"
],
"title": "fetch_post_detailsArguments",
"type": "object"
}