A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://github.com/Zmalski/NHL-API-Reference below:

Zmalski/NHL-API-Reference: Unofficial reference for the NHL API endpoints.

This document aims to serve as an unofficial reference for the NHL APIs. Corrections and/or suggestions are welcome.

Please note that there appears to be two primary sources for official NHL APIs. (api-web.nhle.com and api.nhle.com/stats/rest). This document is broken into distinct sections detailing each API.

  1. Base URL
  2. Player Information
    1. Players
      1. Get Game Log
      2. Get Specific Player Info
      3. Get Game Log As of Now
    2. Skaters
      1. Get Current Skater Stats Leaders
      2. Get Skater Stats Leaders for a Specific Season and Game Type
    3. Goalies
      1. Get Current Goalie Stats Leaders
      2. Get Goalie Stats Leaders by Season
    4. Player Spotlight
      1. Get Players
  3. Team Information
    1. Standings
      1. Get Standings
      2. Get Standings by Date
      3. Get Standings information for each Season
    2. Stats
      1. Get Club Stats Now
      2. Get Club Stats for the Season for a Team
      3. Get Club Stats by Season and Game Type
      4. Get Team Scoreboard
    3. Roster
      1. Get Team Roster As of Now
      2. Get Team Roster by Season
      3. Get Roster Season for Team
      4. Get Team Prospects
    4. Schedule
      1. Get Team Season Schedule As of Now
      2. Get Team Season Schedule
      3. Get Month Schedule As of Now
      4. Get Month Schedule
      5. Get Week Schedule
      6. Get Week Schedule As of Now
  4. League Schedule Information
    1. Schedule
      1. Get Current Schedule
      2. Get Schedule by Date
    2. Schedule Calendar
      1. Get Schedule Calendar As of Now
      2. Get Schedule Calendar for a Specific Date
  5. Game Information
    1. Daily Scores
      1. Get Daily Scores As of Now
      2. Get Daily Scores by Date
      3. Get Scoreboard
    2. Where to Watch
      1. Get Streams
    3. Game Events
      1. Get Play By Play
      2. Get Landing
      3. Get Boxscore
      4. Get Game Story
    4. Network
      1. Get TV Schedule for a Specific Date
      2. Get Current TV Schedule
    5. Odds
      1. Get Partner Game Odds
  6. Playoff Information
    1. Overview
      1. Playoff Series Carousel
    2. Schedule
      1. Get Playoff Series Schedule
    3. Bracket
      1. Get Playoff Bracket
  7. Season
    1. Get Seasons
  8. Draft
    1. Get Draft Rankings
    2. Get Draft Rankings by Date
    3. Get Draft Tracker Now
    4. Get Draft Picks Now
    5. Get Draft Picks
  9. Miscellaneous
    1. Meta
      1. Get Meta Information
      2. Get Game Information
      3. Get Location
      4. Get Playoff Series Metadata
    2. Postal Lookup
      1. Get Postal Code Information
    3. Game Replays
      1. Get Goal Replay
      2. Get Play Replay
    4. Additional Game Content
      1. Get Game Right Rail Content
      2. Get WSC Play By Play
    5. OpenAPI Specification
      1. Get OpenAPI Specification
  1. Base URL
  2. Players
    1. Get Player Information
    2. Skaters
      1. Get Skater Leaders
      2. Get Skater Milestones
      3. Get Skater Information
      4. Get Skater Stats
    3. Goalies
      1. Get Goalie Leaders
      2. Get Goalie Stats
      3. Get Goalie Milestones
    4. Draft
      1. Get Draft Information
  3. Teams
    1. Get Team Information
    2. Get Team By ID
    3. Get Team Stats
    4. Get Franchise Information
  4. Season
    1. Get Component Season
    2. Get Season
  5. Game
    1. Get Game Information
    2. Get Game Metadata
  6. Miscellaneous
    1. Configuration
      1. Get Configuration
    2. Ping the Server
    3. Get Country Information
    4. Get Shift Charts
    5. Glossary
      1. Get Glossary
    6. Content Module
      1. Get Content Module
NHL Web API Documentation

This section provides documentation for the NHL Web API (https://api-web.nhle.com/).

All endpoints described in this section are relative to the following base URL:

https://api-web.nhle.com/
curl -X GET "https://api-web.nhle.com/v1/player/8478402/game-log/20232024/2"
curl -X GET "https://api-web.nhle.com/v1/player/8478402/landing"
curl -L -X GET "https://api-web.nhle.com/v1/player/8478402/game-log/now"
Get Current Skater Stats Leaders
curl -L -X GET "https://api-web.nhle.com/v1/skater-stats-leaders/current?categories=goals&limit=5"
Get Skater Stats Leaders for a Specific Season and Game Type
curl -X GET "https://api-web.nhle.com/v1/skater-stats-leaders/20222023/2?categories=assists&limit=3"
Get Current Goalie Stats Leaders
curl -L -X GET "https://api-web.nhle.com/v1/goalie-stats-leaders/current?categories=wins&limit=5"
Get Goalie Stats Leaders by Season
curl -X GET "https://api-web.nhle.com/v1/goalie-stats-leaders/20232024/2?categories=wins&limit=3"
curl -X GET "https://api-web.nhle.com/v1/player-spotlight"
curl -L -X GET "https://api-web.nhle.com/v1/standings/now"
curl -X GET "https://api-web.nhle.com/v1/standings/2023-11-10"
Get Standings information for each Season
curl -X GET "https://api-web.nhle.com/v1/standings-season"
curl -L -X GET "https://api-web.nhle.com/v1/club-stats/TOR/now"
Get Club Stats for the Season for a Team
curl -X GET "https://api-web.nhle.com/v1/club-stats-season/TOR"
Get Club Stats by Season and Game Type
curl -X GET "https://api-web.nhle.com/v1/club-stats/TOR/20232024/2"
curl -L -X GET "https://api-web.nhle.com/v1/scoreboard/TOR/now"
Get Team Roster As of Now
curl -L -X GET "https://api-web.nhle.com/v1/roster/TOR/current"
Get Team Roster by Season
curl -X GET "https://api-web.nhle.com/v1/roster/TOR/20232024"
Get Roster Season for Team
curl -X GET "https://api-web.nhle.com/v1/roster-season/TOR"
curl -X GET "https://api-web.nhle.com/v1/prospects/TOR"
Get Team Season Schedule As of Now
curl -L -X GET "https://api-web.nhle.com/v1/club-schedule-season/TOR/now"
curl -X GET "https://api-web.nhle.com/v1/club-schedule-season/TOR/20232024"
Get Month Schedule As of Now
curl -L -X GET "https://api-web.nhle.com/v1/club-schedule/TOR/month/now"
curl -X GET "https://api-web.nhle.com/v1/club-schedule/TOR/month/2023-11"
curl -X GET "https://api-web.nhle.com/v1/club-schedule/TOR/week/2023-11-10"
Get Week Schedule As of Now
curl -L -X GET "https://api-web.nhle.com/v1/club-schedule/TOR/week/now"
League Schedule Information
curl -L -X GET "https://api-web.nhle.com/v1/schedule/now"
curl -X GET "https://api-web.nhle.com/v1/schedule/2023-11-10"
Get Schedule Calendar As of Now
curl -L -X GET "https://api-web.nhle.com/v1/schedule-calendar/now"
Get Schedule Calendar for a Specific Date
curl -X GET "https://api-web.nhle.com/v1/schedule-calendar/2023-11-10"
Get Daily Scores As of Now
curl -L -X GET "https://api-web.nhle.com/v1/score/now"
curl -X GET "https://api-web.nhle.com/v1/score/2023-11-10"
curl -L -X GET "https://api-web.nhle.com/v1/scoreboard/now"
curl -X GET "https://api-web.nhle.com/v1/where-to-watch"
curl -X GET "https://api-web.nhle.com/v1/gamecenter/2023020204/play-by-play"
curl -X GET "https://api-web.nhle.com/v1/gamecenter/2023020204/landing"
curl -X GET "https://api-web.nhle.com/v1/gamecenter/2023020204/boxscore"
curl -X GET "https://api-web.nhle.com/v1/wsc/game-story/2023020204"
Get TV Schedule for a Specific Date
curl -X GET "https://api-web.nhle.com/v1/network/tv-schedule/2023-11-10"
curl -L -X GET "https://api-web.nhle.com/v1/network/tv-schedule/now"
curl -L -X GET "https://api-web.nhle.com/v1/partner-game/US/now"
curl -X GET "https://api-web.nhle.com/v1/playoff-series/carousel/20232024/"
Get Playoff Series Schedule
curl -X GET "https://api-web.nhle.com/v1/schedule/playoff-series/20232024/a"
curl -X GET "https://api-web.nhle.com/v1/playoff-bracket/2022"
curl -X GET "https://api-web.nhle.com/v1/season"
curl -X GET "https://api-web.nhle.com/v1/draft/rankings/now"
Get Draft Rankings by Date
curl -X GET "https://api-web.nhle.com/v1/draft/rankings/2023/1"
curl -X GET "https://api-web.nhle.com/v1/draft-tracker/picks/now"
curl -X GET "https://api-web.nhle.com/v1/draft/picks/now"
curl -X GET "https://api-web.nhle.com/v1/draft/picks/2023/all"
curl -X GET "https://api-web.nhle.com/v1/meta?players=8478402&teams=EDM,TOR"
curl -X GET "https://api-web.nhle.com/v1/meta/game/2023020204"
curl -X GET "https://api-web.nhle.com/v1/location"
Get Playoff Series Metadata
curl -X GET "https://api-web.nhle.com/v1/meta/playoff-series/2023/a"
Get Postal Code Information
curl -X GET "https://api-web.nhle.com/v1/postal-lookup/90210"
curl -X GET "https://api-web.nhle.com/v1/ppt-replay/goal/2023020204/12"
curl -X GET "https://api-web.nhle.com/v1/ppt-replay/2023020204/12"
Get Game Right Rail Content
curl -X GET "https://api-web.nhle.com/v1/gamecenter/2023020204/right-rail"
curl -X GET "https://api-web.nhle.com/v1/wsc/play-by-play/2023020204"
Get OpenAPI Specification
curl -X GET "https://api-web.nhle.com/model/v1/openapi.json"

For the full WADL with extended resources: WADL Link

NHL Stats API Documentation

This section provides documentation for the NHL Stats API (https://api.nhle.com/stats/rest).

All endpoints described in this section are relative to the following base URL:

https://api.nhle.com/stats/rest
curl -X GET "https://api.nhle.com/stats/rest/en/players"
curl -X GET "https://api.nhle.com/stats/rest/en/leaders/skaters/points"
curl -X GET "https://api.nhle.com/stats/rest/en/milestones/skaters"
curl -X GET "https://api.nhle.com/stats/rest/en/skater"
curl -X GET "https://api.nhle.com/stats/rest/en/skater/summary?limit=72&start=17&sort=points&cayenneExp=seasonId=20232024"
curl -X GET "https://api.nhle.com/stats/rest/en/leaders/goalies/gaa"
curl -X GET "https://api.nhle.com/stats/rest/en/goalie/summary?limit=72&start=15&sort=wins&cayenneExp=seasonId=20232024"
curl -X GET "https://api.nhle.com/stats/rest/en/milestones/goalies"
curl -X GET "https://api.nhle.com/stats/rest/en/draft"
curl -X GET "https://api.nhle.com/stats/rest/en/team"
curl -X GET "https://api.nhle.com/stats/rest/en/team/id/10"
curl -X GET "https://api.nhle.com/stats/rest/en/team/summary?sort=shotsForPerGame&cayenneExp=seasonId=20232024%20and%20gameTypeId=2"
Get Franchise Information
curl -X GET "https://api.nhle.com/stats/rest/en/franchise"
curl -X GET "https://api.nhle.com/stats/rest/en/componentSeason"
curl -X GET "https://api.nhle.com/stats/rest/en/season"
curl -X GET "https://api.nhle.com/stats/rest/en/game"
curl -X GET "https://api.nhle.com/stats/rest/en/game/meta"
curl -X GET "https://api.nhle.com/stats/rest/en/config"
curl -X GET "https://api.nhle.com/stats/rest/ping"
curl -X GET "https://api.nhle.com/stats/rest/en/country"
curl -X GET "https://api.nhle.com/stats/rest/en/shiftcharts?cayenneExp=gameId=2021020001"
curl -X GET "https://api.nhle.com/stats/rest/en/glossary"
curl -X GET "https://api.nhle.com/stats/rest/en/content/module/overview"

For the full WADL with extended resources: WADL Link


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4