get_slateanswerimperative
Whether there is a checkable slate right now (at least one simulated, not-yet-started game) in each live sport: MLB, WNBA, PGA, and ATP. Pass `sport` to ask about one; omit it for all of them. This is the free pre-check for `check_bet`: call it before grading when it isn't known that today's games are simulated, and call it after an `ungraded` result instead of re-wording the bet, because `ungraded` means the game isn't on the simulated slate rather than that the wording was wrong. Free — spends no check.Input schema
{
"type": "object",
"properties": {
"sport": {
"type": "string",
"enum": [
"MLB",
"WNBA",
"PGA",
"ATP"
],
"description": "One of: MLB, WNBA, PGA, ATP. Omit to get every live sport."
}
}
}