Data
NHL team weekly schedule API
NHL team's weekly schedule (by 3-letter abbreviation and optional date) with game date, UTC start, state, venue, and home/away teams plus scores, normalized from the keyless NHL Web API. Answers queries like 'Maple Leafs schedule this week', 'when do the Rangers play next', 'NHL games for TOR'.
Price$0.01per request
MethodPOST
Route/v1/data/sports-nhl-schedule
StatusLive
MIME typeapplication/json
Rate limit60/minute
Cache3600s public
sportsnhlhockeyschedulegamesteamscoresnhle
API URL
Integration docshttps://x402.hexl.dev/v1/data/sports-nhl-scheduleExample request
{
"team": "TOR",
"date": "2024-01-01"
}Example response
{
"team": "TOR",
"gameCount": 3,
"games": [
{
"gameId": 2023020585,
"date": "2024-01-02",
"startTimeUtc": "2024-01-03T00:00:00Z",
"state": "OFF",
"venue": "Scotiabank Arena",
"home": {
"abbrev": "TOR",
"name": "Maple Leafs",
"score": 4
},
"away": {
"abbrev": "MTL",
"name": "Canadiens",
"score": 2
}
}
]
}Input schema
{
"type": "object",
"required": [
"team"
],
"properties": {
"team": {
"type": "string",
"examples": [
"TOR"
]
},
"date": {
"type": "string",
"examples": [
"2024-01-01"
]
}
}
}Output schema
{
"type": "object",
"additionalProperties": true
}