NHL Daily Schedule API Documentation
You need an API key to use SportsBlaze. Get access at www.sportsblaze.com.
This endpoint updates every 1 second.
Description
This endpoint returns NHL schedules by date.
API Endpoint
https://api.sportsblaze.com/nhl/v1/schedule/daily/{date}.json
Parameters
key
(required)
Your SportsBlaze API key.
type
The season type (e.g. Regular Season
or Playoffs
). Separate multiple types with a comma (e.g. Preseason,Regular Season
).
id
The game id (e.g. 1bbc5a79-548e-5480-99ff-98fd4b8e27bd
). Separate multiple ids with a comma (e.g. 1bbc5a79-548e-5480-99ff-98fd4b8e27bd,ad125d78-8e06-5c30-8bb0-0fda430ac608
).
team
The away or home team id or name (e.g. 243f4cbc-95f7-5c4d-92b6-c6d4a9c082ba
or Philadelphia Flyers
). Separate multiple teams with a comma (e.g. Philadelphia Flyers,New Jersey Devils
).
status
The game status (e.g. Scheduled
or In Progress
). Separate multiple status with a comma (e.g. Scheduled,Final
).
Example URLs
2025-03-31 daily schedule:
https://api.sportsblaze.com/nhl/v1/schedule/daily/2025-03-31.json?key=your_key
Example Response
{
"league": {
"id": "nhl",
"name": "NHL",
"sport": "Hockey"
},
"games": [
{
"season": {
"year": 2024,
"type": "Regular Season"
},
"id": "1bbc5a79-548e-5480-99ff-98fd4b8e27bd",
"teams": {
"away": {
"id": "24d2013c-acb5-55aa-a500-0b5e29c10b85",
"name": "Minnesota Wild"
},
"home": {
"id": "aa065732-6f00-51ec-a38f-b5d7ca0b57bc",
"name": "New Jersey Devils"
}
},
"date": "2025-03-31T23:00:00Z",
"status": "Final",
"venue": {
"name": "Prudential Center",
"location": "Newark"
},
"scores": {
"periods": [
{
"number": 1,
"type": "Regulation",
"away": {
"goals": 0
},
"home": {
"goals": 1
}
},
{
"number": 2,
"type": "Regulation",
"away": {
"goals": 0
},
"home": {
"goals": 0
}
},
{
"number": 3,
"type": "Regulation",
"away": {
"goals": 2
},
"home": {
"goals": 1
}
},
{
"number": 4,
"type": "Overtime",
"away": {
"goals": 0
},
"home": {
"goals": 0
}
},
{
"number": 5,
"type": "Shootout",
"away": {
"goals": 0
},
"home": {
"goals": 1
}
}
],
"total": {
"away": {
"goals": 2,
"sog": 30
},
"home": {
"goals": 3,
"sog": 28
}
}
}
}
]
}