get_team_year_by_year_stats
Retrieve detailed year-by-year statistics for any NBA team using their unique ID. Access historical performance data to analyze trends and team progress over seasons.
Instructions
Get year-by-year stats for a team by their ID.
Args: team_id: str The id of the team.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
team_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"team_id": {
"title": "Team Id",
"type": "string"
}
},
"required": [
"team_id"
],
"type": "object"
}