get-team-prospects
Retrieve prospect data for any NHL team by inputting the three-letter team abbreviation. Facilitates quick access to player development insights and future talent analysis.
Instructions
Get prospects for an NHL team
Input Schema
Name | Required | Description | Default |
---|---|---|---|
teamAbbrev | Yes | Three-letter team abbreviation (e.g. TOR, NYR, BOS) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"teamAbbrev": {
"description": "Three-letter team abbreviation (e.g. TOR, NYR, BOS)",
"maxLength": 3,
"minLength": 3,
"type": "string"
}
},
"required": [
"teamAbbrev"
],
"type": "object"
}