
NHL Stats API — Goalie Milestones
Source:R/nhl_stats_goalie_milestones.R
nhl_stats_goalie_milestones.RdReturns goalie milestone achievements from the NHL Stats
REST API (https://api.nhle.com/stats/rest/{lang}/milestones/goalies).
Value
A data frame (fastRhockey_data) with the following columns:
| col_name | types | description |
| id | integer | Unique milestone record identifier. |
| current_team_id | integer | Player's current team identifier. |
| first_name | character | Player first name. |
| game_type_id | integer | Game type identifier. |
| games_played | integer | Games played. |
| last_name | character | Player last name. |
| milestone | character | Milestone category. |
| milestone_amount | integer | Amount remaining to reach the milestone. |
| player_full_name | character | Player full name. |
| player_id | integer | Unique player identifier. |
| so | integer | Shutouts. |
| team_abbrev | character | Team abbreviation. |
| team_common_name | character | Team common (nickname) name. |
| team_full_name | character | Full team name. |
| team_place_name | character | Team place (city/location) name. |
| toi_minutes | integer | Time on ice in minutes. |
| wins | integer | Wins. |
Examples
# \donttest{
try(nhl_stats_goalie_milestones())
#> ── NHL Stats Goalie Milestones ──────────────────────────── fastRhockey 1.0.0 ──
#> ℹ Data updated: 2026-06-13 07:20:57 UTC
#> # A tibble: 53 × 17
#> id current_team_id first_name game_type_id games_played last_name
#> <int> <int> <chr> <int> <int> <chr>
#> 1 390 3 Jonathan 3 92 Quick
#> 2 391 3 Jonathan 3 92 Quick
#> 3 392 3 Jonathan 3 92 Quick
#> 4 422 24 Petr 2 438 Mrazek
#> 5 467 12 Frederik 2 552 Andersen
#> 6 535 18 Juuse 2 467 Saros
#> 7 549 3 Igor 3 44 Shesterkin
#> 8 595 55 Philipp 3 47 Grubauer
#> 9 607 26 Darcy 2 489 Kuemper
#> 10 627 26 Darcy 3 40 Kuemper
#> # ℹ 43 more rows
#> # ℹ 11 more variables: milestone <chr>, milestone_amount <int>,
#> # player_full_name <chr>, player_id <int>, so <int>, team_abbrev <chr>,
#> # team_common_name <chr>, team_full_name <chr>, team_place_name <chr>,
#> # toi_minutes <int>, wins <int>
# }