Catalog/sports-nhl-standings

Data

NHL league standings API

NHL league-wide standings as of a date with conference, division, record, points, goals, streak, and ranks, normalized from the keyless NHL Web API. Answers queries like 'NHL standings', 'who is first in the Atlantic Division', 'Bruins points'.

Price$0.01per request
MethodPOST
Route/v1/data/sports-nhl-standings
StatusLive
MIME typeapplication/json
Rate limit60/minute
Cache3600s public
sportsnhlhockeystandingsconferencedivisionpointsnhle
API URLhttps://x402.hexl.dev/v1/data/sports-nhl-standings
Integration docs
Example request
{
  "date": "2024-01-01"
}
Example response
{
  "date": "2024-01-01",
  "teamCount": 32,
  "standings": [
    {
      "name": "New York Rangers",
      "abbrev": "NYR",
      "conference": "Eastern",
      "division": "Metropolitan",
      "gamesPlayed": 35,
      "wins": 25,
      "losses": 9,
      "otLosses": 1,
      "points": 51,
      "pointPct": 0.728571,
      "goalsFor": 121,
      "goalsAgainst": 95,
      "goalDifferential": 26,
      "streak": "W1",
      "leagueRank": 1,
      "divisionRank": 1,
      "conferenceRank": 1
    }
  ]
}
Input schema
{
  "type": "object",
  "properties": {
    "date": {
      "type": "string",
      "examples": [
        "2024-01-01"
      ]
    }
  }
}
Output schema
{
  "type": "object",
  "additionalProperties": true
}