Skip to contents

Returns teams belonging to a given conference, derived from standings data.

The original NHL Stats API conferences endpoint is no longer available. This function now extracts conference information from the standings endpoint at api-web.nhle.com.

Usage

nhl_conferences_info(conference_name, date = NULL)

Arguments

conference_name

Character. Conference name (e.g. "Eastern" or "Western").

date

Character date in "YYYY-MM-DD" format. If NULL, returns current conference info.

Value

A data frame (fastRhockey_data) with the following columns:

col_nametypesdescription
team_abbrcharacterTeam abbreviation.
team_namecharacterTeam name.
team_common_namecharacterTeam common (nickname) name.
team_logocharacterURL to the team logo image.
conference_namecharacterConference name.
division_abbrevcharacterDivision abbreviation.
division_namecharacterDivision name.
place_namecharacterTeam place (city) name.
conference_sequenceintegerTeam's seeding position within the conference.
division_sequenceintegerTeam's seeding position within the division.
league_sequenceintegerTeam's seeding position within the league.
wildcard_sequenceintegerTeam's wild card seeding position.
games_playedintegerGames played.
winsintegerWins.
lossesintegerLosses.
ot_lossesintegerOvertime losses.
pointsintegerStandings points.
point_pctgnumericPoints percentage.
regulation_winsintegerWins in regulation.
regulation_plus_ot_winsintegerWins in regulation plus overtime.
goals_forintegerGoals scored.
goals_againstintegerGoals against.
goal_differentialintegerGoal differential (goals for minus goals against).
home_winsintegerHome wins.
home_lossesintegerHome losses.
home_ot_lossesintegerHome overtime losses.
road_winsintegerRoad wins.
road_lossesintegerRoad losses.
road_ot_lossesintegerRoad overtime losses.
l10_winsintegerWins in the last ten games.
l10_lossesintegerLosses in the last ten games.
l10_ot_lossesintegerOvertime losses in the last ten games.
streak_codecharacterCurrent streak type code (W/L/OT).
streak_countintegerLength of the current streak.
shootout_winsintegerShootout wins.
shootout_lossesintegerShootout losses.

Examples

# \donttest{
  try(nhl_conferences_info(conference_name = "Eastern"))
#> ── NHL Conference Information from NHL.com ──────────────── fastRhockey 1.0.0 ──
#>  Data updated: 2026-06-13 04:21:03 UTC
#> # A tibble: 16 × 36
#>    team_abbr team_name             team_common_name team_logo    conference_name
#>    <chr>     <chr>                 <chr>            <chr>        <chr>          
#>  1 CAR       Carolina Hurricanes   Hurricanes       https://ass… Eastern        
#>  2 BUF       Buffalo Sabres        Sabres           https://ass… Eastern        
#>  3 TBL       Tampa Bay Lightning   Lightning        https://ass… Eastern        
#>  4 MTL       Montréal Canadiens    Canadiens        https://ass… Eastern        
#>  5 BOS       Boston Bruins         Bruins           https://ass… Eastern        
#>  6 OTT       Ottawa Senators       Senators         https://ass… Eastern        
#>  7 PIT       Pittsburgh Penguins   Penguins         https://ass… Eastern        
#>  8 PHI       Philadelphia Flyers   Flyers           https://ass… Eastern        
#>  9 WSH       Washington Capitals   Capitals         https://ass… Eastern        
#> 10 DET       Detroit Red Wings     Red Wings        https://ass… Eastern        
#> 11 CBJ       Columbus Blue Jackets Blue Jackets     https://ass… Eastern        
#> 12 NYI       New York Islanders    Islanders        https://ass… Eastern        
#> 13 NJD       New Jersey Devils     Devils           https://ass… Eastern        
#> 14 FLA       Florida Panthers      Panthers         https://ass… Eastern        
#> 15 TOR       Toronto Maple Leafs   Maple Leafs      https://ass… Eastern        
#> 16 NYR       New York Rangers      Rangers          https://ass… Eastern        
#> # ℹ 31 more variables: division_abbrev <chr>, division_name <chr>,
#> #   place_name <chr>, conference_sequence <int>, division_sequence <int>,
#> #   league_sequence <int>, wildcard_sequence <int>, games_played <int>,
#> #   wins <int>, losses <int>, ot_losses <int>, points <int>, point_pctg <dbl>,
#> #   regulation_wins <int>, regulation_plus_ot_wins <int>, goals_for <int>,
#> #   goals_against <int>, goal_differential <int>, home_wins <int>,
#> #   home_losses <int>, home_ot_losses <int>, road_wins <int>, …
# }