get_team_details
Retrieve comprehensive NBA team information, including championship history, awards, and background details, using the team ID. Ideal for accessing detailed data on any NBA team.
Instructions
Get details for a team by their ID. Details include championship awards, conference awards, division awards, background, history, and more.
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"
}