get_player_projections
Retrieve weekly fantasy football player projections for informed lineup decisions, supporting position filtering and league-specific scoring formats.
Instructions
Get projected points for players this week
Input Schema
Name | Required | Description | Default |
---|---|---|---|
league | No | League name (ROAD_TO_GLORY or DYNASTY), defaults to configured default | |
players | No | Array of player IDs to get projections for (optional - gets your roster if not provided) | |
position | No | Filter by position (QB, RB, WR, TE, K, DEF) | |
week | No | Week number (defaults to current week) |
Input Schema (JSON Schema)
{
"properties": {
"league": {
"description": "League name (ROAD_TO_GLORY or DYNASTY), defaults to configured default",
"enum": [
"ROAD_TO_GLORY",
"DYNASTY"
],
"type": "string"
},
"players": {
"description": "Array of player IDs to get projections for (optional - gets your roster if not provided)",
"items": {
"type": "string"
},
"type": "array"
},
"position": {
"description": "Filter by position (QB, RB, WR, TE, K, DEF)",
"enum": [
"QB",
"RB",
"WR",
"TE",
"K",
"DEF"
],
"type": "string"
},
"week": {
"description": "Week number (defaults to current week)",
"maximum": 18,
"minimum": 1,
"type": "number"
}
},
"type": "object"
}