Skip to contents

Get ESPN WNBA Team Detail

Get ESPN WNBA Team Detail

Usage

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

Arguments

team_id

ESPN team identifier (character or numeric).

season

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

...

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

Value

A named list of data frames: Info, Record, NextEvent, StandingSummary, Coaches.

Info

col_nametypesdescription
idcharacterUnique play identifcation number
uidcharacterESPN UID string (universal identifier).
slugcharacterURL-safe identifier.
abbreviationcharacterShort abbreviation.
display_namecharacterDisplay name.
short_display_namecharacterShort display name.
namecharacterDisplay name.
nicknamecharacterTeam or athlete nickname.
locationcharacterFilter results by game location.
colorcharacterPrimary color (hex without leading '#').
alternate_colorcharacterAlternate color (hex without leading '#').
logocharacterTeam or league logo URL.

Record

col_nametypesdescription
typecharacterRecord type / category.
summarycharacterSummary.
statslistStats.

NextEvent

col_nametypesdescription
idcharacterUnique play identifcation number
datecharacterDate in YYYY-MM-DD format.
namecharacterDisplay name.
short_namecharacterShort display name.

StandingSummary

col_nametypesdescription
standing_summarycharacterStanding summary.

Coaches

col_nametypesdescription
idcharacterUnique play identifcation number
first_namecharacterPlayer's first name.
last_namecharacterPlayer's last name.
experienceintegerYears of professional experience.

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_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_team(team_id = "17", season = 2025)
#> $Info
#> ── ESPN WNBA Team Info from ESPN.com ─────────────────────────── wehoop 3.0.0 ──
#>  Data updated: 2026-05-19 01:33:26 UTC
#> # A tibble: 1 × 12
#>   id    uid    slug  abbreviation display_name short_display_name name  location
#>   <chr> <chr>  <chr> <chr>        <chr>        <chr>              <chr> <chr>   
#> 1 17    s:40~… las-… LV           Las Vegas A… Aces               Aces  Las Veg…
#> # ℹ 4 more variables: color <chr>, alternate_color <chr>, logo <chr>,
#> #   logo_dark <chr>
#> 
#> $Record
#> ── ESPN WNBA Team Record from ESPN.com ───────────────────────── wehoop 3.0.0 ──
#>  Data updated: 2026-05-19 01:33:26 UTC
#> # A tibble: 3 × 4
#>   description    type  summary stats        
#>   <chr>          <chr> <chr>   <list>       
#> 1 Overall Record total 4-1     <df [20 × 2]>
#> 2 Home Record    home  0-1     <df [5 × 2]> 
#> 3 Away Record    road  4-0     <df [5 × 2]> 
#> 
#> $NextEvent
#> ── ESPN WNBA Team Next Event from ESPN.com ───────────────────── wehoop 3.0.0 ──
#>  Data updated: 2026-05-19 01:33:26 UTC
#> # A tibble: 1 × 4
#>   id        date              name                                 short_name
#>   <chr>     <chr>             <chr>                                <chr>     
#> 1 401856932 2026-05-24T00:00Z Los Angeles Sparks at Las Vegas Aces LA @ LV   
#> 
#> $StandingSummary
#> ── ESPN WNBA Team Standing Summary from ESPN.com ─────────────── wehoop 3.0.0 ──
#>  Data updated: 2026-05-19 01:33:26 UTC
#> # A tibble: 1 × 1
#>   standing_summary                  
#>   <chr>                             
#> 1 1st in Western Conference Division
#> 
#> $Coaches
#> data frame with 0 columns and 0 rows
#> 
# }