get_external_links
Extract all external links from top WallStreetBets posts based on specified score, comment thresholds, and post limits for market analysis and insights.
Instructions
Get all external links from top WSB posts.
Args:
min_score: Minimum score (upvotes) required
min_comments: Minimum number of comments required
limit: Maximum number of posts to scan
Returns:
Dictionary with all unique external links found
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | ||
min_comments | No | ||
min_score | No |
Input Schema (JSON Schema)
{
"properties": {
"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": "get_external_linksArguments",
"type": "object"
}