Skip to contents

Get ESPN WNBA Team Roster

Get ESPN WNBA Team Roster

Usage

espn_wnba_team_roster(team_id, season = most_recent_wnba_season(), ...)

Arguments

team_id

ESPN team identifier (character or numeric).

season

Season year (numeric). Defaults to the most recent WNBA season.

...

Additional arguments; currently unused.

Value

A single tibble with one row per athlete.

col_nametypesdescription
athlete_idcharacterUnique athlete identifier (ESPN).
full_namecharacterPlayer's full name.
jerseycharacterJersey number worn by the player.
position_abbrevcharacterAbbreviation for position.
position_namecharacterListed roster position ('Guard', 'Forward', 'Center').
heightcharacterPlayer height (string e.g. '6-2' or inches).
weightcharacterPlayer weight in pounds.
agecharacterPlayer age (in years).
birth_datecharacterDate of birth (YYYY-MM-DD).
birth_placecharacterPlace of birth.
headshotcharacterHeadshot image URL.
link_webcharacterWeb link / URL.
statuscharacterStatus label.
team_idcharacterUnique team identifier.
seasonintegerSeason identifier (4-digit year or 'YYYY-YY' string).

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_leaders(), 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_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_team_roster(team_id = "17", season = 2025)
#> ── ESPN WNBA Team Roster from ESPN.com ───────────────────────── wehoop 3.0.0 ──
#>  Data updated: 2026-05-19 01:33:28 UTC
#> # A tibble: 12 × 15
#>    athlete_id full_name jersey position_abbrev position_name height weight age  
#>    <chr>      <chr>     <chr>  <chr>           <chr>         <chr>  <chr>  <chr>
#>  1 4565501    Janiah B… 2      F               Forward       "6' 4… 185 l… 22   
#>  2 4433633    Kierstan… 1      F               Forward       "6' 1… 176 l… 26   
#>  3 4280892    Chennedy… 23     G               Guard         "5' 9… 143 l… 27   
#>  4 4281190    Dana Eva… 11     G               Guard         "5' 6… 145 l… 27   
#>  5 2529122    Chelsea … 12     G               Guard         "5' 1… 170 l… 33   
#>  6 2987869    Jewell L… 24     G               Guard         "5' 1… 175 l… 32   
#>  7 2529458    Cheyenne… 32     F               Forward       "6' 4… 193 l… 33   
#>  8 4398776    NaLyssa … 3      F               Forward       "6' 4… 185 l… 25   
#>  9 3099736    Stephani… 7      F               Forward       "6' 2… 192 l… 31   
#> 10 3142086    Brianna … 21     F               Forward       "6' 3… 175 l… 29   
#> 11 3149391    A'ja Wil… 22     C               Center        "6' 4… 195 l… 29   
#> 12 4065870    Jackie Y… 0      G               Guard         "6' 0… 165 l… 28   
#> # ℹ 7 more variables: birth_date <chr>, birth_place <chr>, headshot <chr>,
#> #   link_web <chr>, status <chr>, team_id <chr>, season <int>
# }