get_live_game_play_by_play
Retrieve play-by-play data for a specific NBA game by providing its unique game ID. Access detailed information about each play, including sequences and events, for analysis or integration.
Instructions
Get the play-by-play data for a specific game by its ID. The play-by-play data includes detailed information about each play in the game.
Args: game_id: str The ID of the game.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
game_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"game_id": {
"title": "Game Id",
"type": "string"
}
},
"required": [
"game_id"
],
"type": "object"
}