Returns the NHL arena/venue listing from the NHL Records API
(https://records.nhl.com/site/api/venue).
Value
A data frame (fastRhockey_data) with the following columns:
| col_name | types | description |
| id | integer | Unique venue record identifier. |
| building_id | integer | Building identifier for the venue. |
| city | character | City where the venue is located. |
| country_code | character | Country code of the venue. |
| outdoor | logical | Whether the venue is an outdoor rink. |
| postal_code | character | Postal code of the venue. |
| short_country_code | character | Short country code of the venue. |
| state_province_code | character | State or province code of the venue. |
| venue_id | integer | Unique venue identifier. |
| venue_name | character | Name of the venue. |
Examples
# \donttest{
try(nhl_records_venue())
#> ── NHL Records Venue ────────────────────────────────────── fastRhockey 1.0.0 ──
#> ℹ Data updated: 2026-06-13 03:25:48 UTC
#> # A tibble: 618 × 10
#> id building_id city country_code outdoor postal_code short_country_code
#> <int> <int> <chr> <chr> <lgl> <chr> <chr>
#> 1 1 94 Uniond… USA FALSE NA US
#> 2 2 364 Yarmou… CAN FALSE B5A 4R3 CA
#> 3 3 5 Dallas USA FALSE 75219 US
#> 4 4 264 Abbots… CAN FALSE V2S 8H8 CA
#> 5 5 47 Detroit USA FALSE NA US
#> 6 6 132 Prague CZE FALSE NA CZ
#> 7 7 122 Chicago USA TRUE NA US
#> 8 8 53 Salzbu… AUT FALSE NA AT
#> 9 9 375 Hamilt… CAN FALSE L9A 2N3 CA
#> 10 10 318 Pentic… CAN FALSE V2A 9C4 CA
#> # ℹ 608 more rows
#> # ℹ 3 more variables: state_province_code <chr>, venue_id <int>,
#> # venue_name <chr>
# }
