
NHL Edge Goalie Shot Location Top 10
Source:R/nhl_edge_goalie_shot_location_top_10.R
nhl_edge_goalie_shot_location_top_10.RdReturns the NHL Edge top-10 goalie leaderboard for a given
shot-location category and sort_by combination. Wraps
https://api-web.nhle.com/v1/edge/goalie-shot-location-top-10/{category}/{sortBy}/....
When season is NULL (default) the /now endpoint is used to
fetch the current season.
Arguments
- category
Character shot-location category accepted by the Edge API (e.g.,
"high","mid","low").- sort_by
Character sort-by key accepted by the Edge API (e.g.,
"savePctg").- season
Optional 4-digit end-year (e.g.,
2025for the 2024-25 season), an 8-character API season (e.g.,"20242025"), orNULL(default) for the current season via the/nowendpoint.- game_type
Integer game type. 1 = preseason, 2 = regular season (default), 3 = playoffs.
Examples
# \donttest{
try(nhl_edge_goalie_shot_location_top_10(
category = "high",
sort_by = "savePctg"
))
#> Warning: `nhl_edge_goalie_shot_location_top_10()` was deprecated in fastRhockey 1.0.0.
#> ℹ The NHL has removed this Edge top-10 leaderboard endpoint; the function
#> returns NULL.
#> 2026-06-13 04:21:10.357409: Error fetching https://api-web.nhle.com/v1/edge/goalie-shot-location-top-10/high/savePctg/now: The API returned an error
#> NULL
# }