NHL Season Standings API Documentation
Requirement
You need an API key to use SportsBlaze. Get access at www.sportsblaze.com.
Update Frequency
This endpoint updates every 60 seconds.
Description
This endpoint returns NHL teams, regular season standings, and records.
API Endpoint
https://api.sportsblaze.com/nhl/v1/standings/{season}.json
Parameters
key
(required)
Your SportsBlaze API key.
team
The team id, name, or abbreviation (e.g. 1a790ab5-1359-5934-aed5-e39dfb6012dc
, Anaheim Ducks
, or ANA
). Separate multiple teams with a comma (e.g. Anaheim Ducks,Boston Bruins
).
division
The team division (e.g. Pacific
or Central
). Separate multiple divisions with a comma (e.g. Pacific,Central
).
conference
The team conference (e.g. Eastern
or Western
).
Example URLs
2024 season standings:
https://api.sportsblaze.com/nhl/v1/standings/2024.json?key=your_key
2024 season standings, Boston Bruins team:
https://api.sportsblaze.com/nhl/v1/standings/2024.json?key=your_key&team=Boston%20Bruins
2024 season standings, Pacific & Metropolitan divisions:
https://api.sportsblaze.com/nhl/v1/standings/2024.json?key=your_key&division=Pacific,Metropolitan
Example Response
{
"league": {
"id": "nhl",
"name": "NHL",
"sport": "Hockey"
},
"season": {
"year": 2024,
"type": "Regular Season"
},
"teams": [
{
"id": "6e91db8e-c02d-5e14-aa94-3674c84a1049",
"name": "Boston Bruins",
"abbreviation": "BOS",
"location": "Boston",
"nickname": "Bruins",
"division": "Atlantic",
"conference": "Eastern",
"logo": "https://assets.nhle.com/logos/nhl/svg/BOS_light.svg",
"standings": [
{
"name": "Division",
"sequence": 8
},
{
"name": "Conference",
"sequence": 15
},
{
"name": "League",
"sequence": 28
}
],
"records": [
{
"split": "Regular Season",
"games": 82,
"wins": 33,
"losses": 39,
"overtime": 10,
"pct": 0.402439,
"points": 76
}
]
},
{
"id": "7cc49872-d8f0-53b8-a3ef-ae6b4a49b17d",
"name": "Colorado Avalanche",
"abbreviation": "COL",
"location": "Colorado",
"nickname": "Avalanche",
"division": "Central",
"conference": "Western",
"logo": "https://assets.nhle.com/logos/nhl/svg/COL_light.svg",
"standings": [
{
"name": "Division",
"sequence": 3
},
{
"name": "Conference",
"sequence": 5
},
{
"name": "League",
"sequence": 8
}
],
"records": [
{
"split": "Regular Season",
"games": 82,
"wins": 49,
"losses": 29,
"overtime": 4,
"pct": 0.597561,
"points": 102
}
]
}
],
"updated": "2025-04-20T22:16:01Z"
}