fetch_batch_post_details
Retrieve detailed information for multiple Reddit posts by specifying their IDs. Designed for analyzing WallStreetBets content to support market insights and decision-making.
Instructions
Fetch details for multiple posts efficiently.
Args:
post_ids: List of Reddit post IDs
Returns:
Dictionary with details for all requested posts
Input Schema
Name | Required | Description | Default |
---|---|---|---|
post_ids | Yes |
Input Schema (JSON Schema)
{
"properties": {
"post_ids": {
"items": {
"type": "string"
},
"title": "Post Ids",
"type": "array"
}
},
"required": [
"post_ids"
],
"title": "fetch_batch_post_detailsArguments",
"type": "object"
}