get-current-goalie-leaders
Retrieve current NHL goalie leaders by specifying a stat category like wins, savePctg, or shutouts, and set a limit for the results. Ideal for analyzing top-performing goalies.
Instructions
Get current NHL goalie stats leaders
Input Schema
Name | Required | Description | Default |
---|---|---|---|
category | Yes | Stat category (e.g. wins, savePctg, gaa, shutouts) | |
limit | No | Number of goalies 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. wins, savePctg, gaa, shutouts)",
"type": "string"
},
"limit": {
"description": "Number of goalies to return (default: 5)",
"type": "number"
}
},
"required": [
"category"
],
"type": "object"
}