Skip to contents

Get ESPN WNBA League Leaders

Get ESPN WNBA League Leaders

Usage

espn_wnba_leaders(season = most_recent_wnba_season(), season_type = 2, ...)

Arguments

season

Season year (numeric, e.g. 2025). Defaults to the most recent WNBA season.

season_type

Integer season type: 1 = preseason, 2 = regular (default), 3 = postseason.

...

Additional arguments; currently unused but retained for forward compatibility. Proxy configuration should use options(wehoop.proxy = ...) – see ?wehoop for details.

Value

A single wehoop_data tibble with one row per category-athlete pair.

col_nametypesdescription
seasonintegerSeason identifier (4-digit year or 'YYYY-YY' string).
season_typeintegerSeason type (1=pre-season, 2=regular season, 3=postseason, 4=off-season for ESPN; or string label for WNBA Stats).
categorycharacterCategory label.
abbreviationcharacterShort abbreviation.
athlete_idcharacterUnique athlete identifier (ESPN).
athlete_namecharacterAthlete display name (ESPN).
team_idcharacterUnique team identifier.
team_abbrevcharacterAbbreviation for team.
valuenumericNumeric or string value field.
rankintegerWhether to include statistical ranks in the returned table.
display_valuecharacterHuman-readable display value.

See also

Other ESPN WNBA Functions: espn_wnba_athlete_awards(), espn_wnba_athlete_career_stats(), espn_wnba_athlete_eventlog(), espn_wnba_athlete_eventlog_v2(), espn_wnba_athlete_gamelog(), espn_wnba_athlete_info(), espn_wnba_athlete_overview(), espn_wnba_athlete_seasons(), espn_wnba_athlete_splits(), espn_wnba_athlete_statisticslog(), espn_wnba_athlete_stats(), espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_event_broadcasts(), espn_wnba_event_odds(), espn_wnba_event_officials(), espn_wnba_event_powerindex(), espn_wnba_event_predictor(), espn_wnba_event_probabilities(), espn_wnba_event_propbets(), espn_wnba_event_situation(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_rosters(), espn_wnba_injuries(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_box(), espn_wnba_player_stats(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Author

Saiem Gilani

Examples

# \donttest{
  espn_wnba_leaders(season = 2024, season_type = 2)
#> ── ESPN WNBA Leaders from ESPN.com ───────────────────────────── wehoop 3.0.0 ──
#>  Data updated: 2026-05-19 01:33:15 UTC
#> # A tibble: 375 × 11
#>    season season_type category      abbreviation athlete_id athlete_name team_id
#>     <int>       <int> <chr>         <chr>        <chr>      <chr>        <chr>  
#>  1   2024           2 pointsPerGame PTS          3149391    NA           17     
#>  2   2024           2 pointsPerGame PTS          3904577    NA           3      
#>  3   2024           2 pointsPerGame PTS          2998938    NA           11     
#>  4   2024           2 pointsPerGame PTS          2998928    NA           9      
#>  5   2024           2 pointsPerGame PTS          3917450    NA           8      
#>  6   2024           2 pointsPerGame PTS          2987869    NA           17     
#>  7   2024           2 pointsPerGame PTS          4433403    NA           5      
#>  8   2024           2 pointsPerGame PTS          3142191    NA           5      
#>  9   2024           2 pointsPerGame PTS          4066533    NA           9      
#> 10   2024           2 pointsPerGame PTS          3065570    NA           6      
#> # ℹ 365 more rows
#> # ℹ 4 more variables: team_abbrev <chr>, value <dbl>, rank <int>,
#> #   display_value <chr>
# }