fetch_detailed_wsb_posts
Retrieve and filter WallStreetBets posts by score, comments, and flairs, extracting detailed data like top comments and shared links for market analysis.
Instructions
Fetch and filter WSB posts, then get detailed information including top comments and links for each.
Args:
min_score: Minimum score (upvotes) required
min_comments: Minimum number of comments required
limit: Maximum number of posts to return
excluded_flairs: List of post flairs to exclude. Defaults to ["Meme", "Shitpost", "Gain", "Loss"].
Returns:
A dictionary with detailed data for the filtered posts.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
excluded_flairs | No | ||
limit | No | ||
min_comments | No | ||
min_score | No |
Input Schema (JSON Schema)
{
"properties": {
"excluded_flairs": {
"default": [
"Meme",
"Shitpost",
"Gain",
"Loss"
],
"items": {
"type": "string"
},
"title": "Excluded Flairs",
"type": "array"
},
"limit": {
"default": 10,
"title": "Limit",
"type": "integer"
},
"min_comments": {
"default": 10,
"title": "Min Comments",
"type": "integer"
},
"min_score": {
"default": 100,
"title": "Min Score",
"type": "integer"
}
},
"title": "fetch_detailed_wsb_postsArguments",
"type": "object"
}