get-team-stats-seasons
Retrieve available seasons with detailed statistics for a specific NHL team using the three-letter team abbreviation, enabling comprehensive team performance analysis.
Instructions
Get available seasons with statistics for an NHL team
Input Schema
Name | Required | Description | Default |
---|---|---|---|
teamAbbrev | Yes | Three-letter team abbreviation (e.g. TOR, NYR, BOS) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"teamAbbrev": {
"description": "Three-letter team abbreviation (e.g. TOR, NYR, BOS)",
"maxLength": 3,
"minLength": 3,
"type": "string"
}
},
"required": [
"teamAbbrev"
],
"type": "object"
}