get-season-stat-leaders
Retrieve NHL skater stat leaders for a specific season and game type. Provide category, season, and optional parameters like limit to customize results.
Instructions
Get NHL skater stats leaders for a specific season and game type
Input Schema
Name | Required | Description | Default |
---|---|---|---|
category | Yes | Stat category (e.g. goals, assists, points) | |
gameType | No | Game type (2 for regular season, 3 for playoffs) | |
limit | No | Number of players 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. goals, assists, points)",
"type": "string"
},
"gameType": {
"default": 2,
"description": "Game type (2 for regular season, 3 for playoffs)",
"type": "number"
},
"limit": {
"description": "Number of players to return (default: 5)",
"type": "number"
},
"season": {
"description": "Season in YYYYYYYY format (e.g. 20232024)",
"type": "string"
}
},
"required": [
"category",
"season"
],
"type": "object"
}