get-season-goalie-leaders
Retrieve NHL goalie leaders by stat category for a specific season and game type using structured NHL data. Specify metrics like wins, save percentage, GAA, or shutouts.
Instructions
Get NHL goalie stats leaders for a specific season and game type
Input Schema
Name | Required | Description | Default |
---|---|---|---|
category | Yes | Stat category (e.g. wins, savePctg, gaa, shutouts) | |
gameType | No | Game type (2 for regular season, 3 for playoffs) | |
limit | No | Number of goalies to return (default: 5) | |
season | Yes | Season in YYYYYYYY format (e.g. 20232024) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"category": {
"description": "Stat category (e.g. wins, savePctg, gaa, shutouts)",
"type": "string"
},
"gameType": {
"default": 2,
"description": "Game type (2 for regular season, 3 for playoffs)",
"type": "number"
},
"limit": {
"description": "Number of goalies to return (default: 5)",
"type": "number"
},
"season": {
"description": "Season in YYYYYYYY format (e.g. 20232024)",
"type": "string"
}
},
"required": [
"category",
"season"
],
"type": "object"
}