get_my_matchup
Retrieve your current fantasy football matchup details including scores, projections, and opponent information to make informed lineup decisions.
Instructions
Get your current week matchup details
Input Schema
Name | Required | Description | Default |
---|---|---|---|
league | No | League name (ROAD_TO_GLORY or DYNASTY), defaults to configured default | |
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"
},
"week": {
"description": "Week number (defaults to current week)",
"maximum": 18,
"minimum": 1,
"type": "number"
}
},
"type": "object"
}