get-current-stat-leaders
Retrieve current NHL skater stat leaders by specifying a category (e.g., goals, assists) and the number of players to display, using structured NHL data access.
Instructions
Get current NHL skater stats leaders
Input Schema
Name | Required | Description | Default |
---|---|---|---|
category | Yes | Stat category (e.g. goals, assists, points) | |
limit | No | Number of players to return (default: 5) |
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"
},
"limit": {
"description": "Number of players to return (default: 5)",
"type": "number"
}
},
"required": [
"category"
],
"type": "object"
}