Skip to contents

Returns the NHL trophy listing from the NHL Records API (https://records.nhl.com/site/api/trophy).

Usage

nhl_records_trophy(cayenne_exp = NULL)

Arguments

cayenne_exp

Optional Cayenne filter expression string.

Value

A data frame (fastRhockey_data) with the following columns:

col_nametypesdescription
idintegerUnique trophy identifier.
brief_descriptioncharacterBrief description of the trophy.
category_idintegerTrophy category identifier.
created_oncharacterDate the trophy record was created.
descriptioncharacterFull description of the trophy.
footnotelogicalFootnote associated with the trophy.
home_page_urlcharacterURL to the trophy's home page.
image_urlcharacterURL to the trophy's image.
namecharacterFull name of the trophy.
short_namecharacterShort name of the trophy.

Examples

# \donttest{
  try(nhl_records_trophy())
#> ── NHL Records Trophy ───────────────────────────────────── fastRhockey 1.0.0 ──
#>  Data updated: 2026-06-13 03:25:48 UTC
#> # A tibble: 25 × 10
#>       id brief_description           category_id created_on description footnote
#>    <int> <chr>                             <int> <chr>      <chr>       <lgl>   
#>  1     1 NHL Champion                          1 2025-08-0… "<p><stron… NA      
#>  2     2 Coach of the Year                     3 2026-06-0… "<p><b>Des… NA      
#>  3     3 Sportsmanship and Gentlema…           2 2026-06-0… "<p><b>Des… NA      
#>  4     4 Rookie of the Year                    2 2026-05-1… "<p><b>Des… NA      
#>  5     5 Western Conference Champion           1 2026-05-2… "<p><b>Des… NA      
#>  6     6 Leadership and Humanitaria…           2 2026-06-0… "<p><b>Des… NA      
#>  7     7 MVP of Stanley Cup Playoffs           2 2025-06-2… "<p><b>Des… NA      
#>  8     8 MVP of Regular Season                 2 2026-06-1… "<p><b>Des… NA      
#>  9     9 Goaltender(s) on Team with…           2 2026-04-1… "<p><b>Des… NA      
#> 10    10 Perseverance, Sportsmanshi…           2 2026-06-0… "<p><b>Des… NA      
#> # ℹ 15 more rows
#> # ℹ 4 more variables: home_page_url <chr>, image_url <chr>, name <chr>,
#> #   short_name <chr>
# }