GET v1/NHL/Teams
Returns information on current franchises
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Team| Name | Description | Type | Additional information |
|---|---|---|---|
| team_id |
Zero-padded 4 digit team identifier |
string |
None. |
| season_id |
Season |
integer |
None. |
| abbr |
Team 3-letter abbreviation |
string |
None. |
| nick |
Team Nickname |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"team_id": "sample string 1",
"season_id": 2,
"abbr": "sample string 3",
"nick": "sample string 4"
}
application/xml, text/xml
Sample:
<Team xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Elias.Models.NHL"> <abbr>sample string 3</abbr> <nick>sample string 4</nick> <season_id>2</season_id> <team_id>sample string 1</team_id> </Team>