find_top_posts
Fetch and filter top WallStreetBets posts by score, comments, and flairs for targeted market insights. Returns a curated dataset optimized for analysis, cached for 5 minutes.
Instructions
Fetch and filter WSB posts based on criteria. Caches results for 5 minutes.
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 filtered posts data
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": "find_top_postsArguments",
"type": "object"
}