get-skater-leaders
Retrieve NHL skater statistical leaders by specifying categories such as goals, assists, or points and set a limit for the number of players to display.
Instructions
Get NHL statistical leaders for skaters
Input Schema
Name | Required | Description | Default |
---|---|---|---|
category | Yes | Statistical category to get leaders for | |
limit | No | Number of players to return (max 50) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"category": {
"description": "Statistical category to get leaders for",
"enum": [
"points",
"goals",
"assists",
"plusMinus",
"powerPlayGoals",
"gameWinningGoals",
"shots"
],
"type": "string"
},
"limit": {
"default": 10,
"description": "Number of players to return (max 50)",
"maximum": 50,
"minimum": 1,
"type": "number"
}
},
"required": [
"category"
],
"type": "object"
}