get-team-stats-by-season
Retrieve detailed NHL team statistics for a specific season and game type by entering the team abbreviation, season, and game type (regular season or playoffs).
Instructions
Get statistics for an NHL team for a specific season and game type
Input Schema
Name | Required | Description | Default |
---|---|---|---|
gameType | No | Game type (2 for regular season, 3 for playoffs) | |
season | Yes | Season in YYYYYYYY format (e.g. 20232024) | |
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": {
"gameType": {
"default": 2,
"description": "Game type (2 for regular season, 3 for playoffs)",
"type": "number"
},
"season": {
"description": "Season in YYYYYYYY format (e.g. 20232024)",
"type": "string"
},
"teamAbbrev": {
"description": "Three-letter team abbreviation (e.g. TOR, NYR, BOS)",
"maxLength": 3,
"minLength": 3,
"type": "string"
}
},
"required": [
"teamAbbrev",
"season"
],
"type": "object"
}