nhlapi
A minimum-dependency R interface to the NHL API.
{nhlapi}
is an R package that provides functionality to retrieve and process the data exposed by the open NHL API. This includes information on players, teams, games, tournaments, drafts, standings, schedules and other endpoints. A lower-level interface to access the data via URLs directly is also provided. See below for a full list of endpoints.
Installation
You can install {nhlapi}
from CRAN:
install.packages("nhlapi")
You can also install the latest development version from the master branch on GitHub using the {remotes}
or {devtools}
packages:
# With remotes
remotes::install_github("jozefhajnala/nhlapi")
# Or with devtools
devtools::install_github("jozefhajnala/nhlapi")
Use and develop with Docker
The Docker image jozefhajnala/nhlapi has RStudio and a set of useful packages for both interactive use of the {nhlapi}
package and its development.
Running the following command and opening localhost:8787
in a web browser should open RStudio with a setup ready for analysis and development. Login user is rstudio
and password is pass
:
# Password can be changed by changing the PASSWORD option below:
# If you need root permissions, add `-e ROOT=true`
docker run --rm -p 8787:8787 -e PASSWORD=pass jozefhajnala/nhlapi
Usage
We retrieve the data from the NHL API by calling the functions exported by the {nhlapi}
package. They start with nhl_
so you can easily find them with auto-complete in your favorite editor:
In-depth look at use
The package's vignettes provide a more detailed overview of some of the functionality:
- Low Level NHL API vignette
- High-level teams API vignette
- High-level players API vignette
- Full reference manual on CRAN (pdf)
Implemented API endpoints
Major endpoints
[x] Teams
- [x] Team Metadata
nhl_teams()
- [x] Team Rosters
nhl_teams_rosters()
- [x] Team Schedules
nhl_teams_shedule_next()
,nhl_teams_shedule_previous()
- [x] Team Stats
nhl_teams_stats()
- [x] Team Metadata
[x] People (Players)
- [x] Players metadata
nhl_players
- [x] Players season/playoff stats
nhl_players_seasons()
- [x] Players all season stats
nhl_players_allseasons()
- [x] Players metadata
[x] Games
- [x] Games content
nhl_games_content()
- [x] Games full live feed
nhl_games_feed()
- [x] Games box score info
nhl_games_boxscore()
- [x] Games line score info
nhl_games_linescore()
- [x] Games content
[x] Tournaments
- [x] Playoffs
nhl_tournaments_playoffs()
- [x] Olympics
nhl_tournaments_olympics()
- [x] World Cups
nhl_tournaments_worldcups()
- [x] Playoffs
[x] Schedule
- [x] Generic API with all parameters
nhl_schedule()
- [x] Today
nhl_schedule_today()
- [x] Custom seasons
nhl_schedule_seasons()
- [x] Custom date ranges
nhl_schedule_date_range()
- [x] Generic API with all parameters
[x] Standings
nhl_standings()
Minor endpoints
- [x] Divisions
nhl_divisions()
- [x] Conferences
nhl_conferences()
- [x] Drafts
nhl_drafts()
- [x] Seasons
nhl_seasons()
- [x] Awards
nhl_awards()
- [x] Venues
nhl_venues()
- [x] Draft prospects
nhl_draft_prospects()
Metadata endpoints
- [x] Game Types
nhl_md_game_types()
- [x] Game Statuses
nhl_md_game_statuses()
- [x] Play Types
nhl_md_play_types()
- [x] Tournament Types
nhl_md_tournament_types()
- [x] Standings Types
nhl_md_standings_types()
- [x] Stats Types
nhl_md_stat_types()
- [x] Event Types
nhl_md_event_types()
Acknowledgments
Thanks go to Drew Hynes for documenting this so well on GitLab.
Copyright message
NHL and the NHL Shield are registered trademarks of the National Hockey League. NHL and NHL team marks are the property of the NHL and its teams. © NHL 2021. All Rights Reserved.