get_trending_players
Identify trending fantasy football players based on recent add/drop activity with position filtering and availability checks for waiver wire decisions.
Instructions
Get trending players with add/drop activity and analysis
Input Schema
Name | Required | Description | Default |
---|---|---|---|
availableOnly | No | Only show players available in your league (default: true) | |
league | No | League name (ROAD_TO_GLORY or DYNASTY), defaults to configured default | |
limit | No | Maximum number of players to return (default: 20) | |
lookbackHours | No | Hours to look back for trending activity (default: 24) | |
position | No | Filter by position (QB, RB, WR, TE, K, DEF) | |
type | No | Type of trending activity (add, drop, both) | both |
Input Schema (JSON Schema)
{
"properties": {
"availableOnly": {
"default": true,
"description": "Only show players available in your league (default: true)",
"type": "boolean"
},
"league": {
"description": "League name (ROAD_TO_GLORY or DYNASTY), defaults to configured default",
"enum": [
"ROAD_TO_GLORY",
"DYNASTY"
],
"type": "string"
},
"limit": {
"default": 20,
"description": "Maximum number of players to return (default: 20)",
"maximum": 50,
"minimum": 1,
"type": "number"
},
"lookbackHours": {
"default": 24,
"description": "Hours to look back for trending activity (default: 24)",
"maximum": 168,
"minimum": 1,
"type": "number"
},
"position": {
"description": "Filter by position (QB, RB, WR, TE, K, DEF)",
"enum": [
"QB",
"RB",
"WR",
"TE",
"K",
"DEF"
],
"type": "string"
},
"type": {
"default": "both",
"description": "Type of trending activity (add, drop, both)",
"enum": [
"add",
"drop",
"both"
],
"type": "string"
}
},
"type": "object"
}