Skip to contents

Get ESPN WNBA Season Info

Get ESPN WNBA Season Info

Usage

espn_wnba_season_info(season = most_recent_wnba_season(), ...)

Arguments

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 wehoop_data tibbles: Info, Types, Athletes, Coaches, Teams, Awards. $ref URL components are returned as character columns and are NOT auto-resolved – use targeted endpoint functions for details.

Info

col_nametypesdescription
yearinteger4-digit year.
start_datecharacterStart date (YYYY-MM-DD).
end_datecharacterEnd date (YYYY-MM-DD).
display_namecharacterDisplay name.
type_idcharacterType identifier (numeric).
type_namecharacterType name.

Types / Athletes / Coaches / Teams / Awards

col_nametypesdescription
countintegerCount of count.
refcharacterRef.

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_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_season_info(season = 2025)
#> $Info
#> ── ESPN WNBA Season Info from ESPN.com ───────────────────────── wehoop 3.0.0 ──
#>  Data updated: 2026-05-19 01:33:21 UTC
#> # A tibble: 1 × 6
#>    year start_date        end_date          display_name type_id type_name     
#>   <int> <chr>             <chr>             <chr>        <chr>   <chr>         
#> 1  2025 2025-04-14T07:00Z 2025-10-20T06:59Z 2025         2       Regular Season
#> 
#> $Types
#> ── ESPN WNBA Season Types from ESPN.com ──────────────────────── wehoop 3.0.0 ──
#>  Data updated: 2026-05-19 01:33:21 UTC
#> # A tibble: 1 × 2
#>   count ref                                                                     
#>   <int> <chr>                                                                   
#> 1     4 http://sports.core.api.espn.com/v2/sports/basketball/leagues/wnba/seaso…
#> 
#> $Athletes
#> ── ESPN WNBA Season Athletes from ESPN.com ───────────────────── wehoop 3.0.0 ──
#>  Data updated: 2026-05-19 01:33:21 UTC
#> # A tibble: 0 × 0
#> 
#> $Coaches
#> ── ESPN WNBA Season Coaches from ESPN.com ────────────────────── wehoop 3.0.0 ──
#>  Data updated: 2026-05-19 01:33:21 UTC
#> # A tibble: 0 × 0
#> 
#> $Teams
#> ── ESPN WNBA Season Teams from ESPN.com ──────────────────────── wehoop 3.0.0 ──
#>  Data updated: 2026-05-19 01:33:21 UTC
#> # A tibble: 0 × 0
#> 
#> $Awards
#> ── ESPN WNBA Season Awards from ESPN.com ─────────────────────── wehoop 3.0.0 ──
#>  Data updated: 2026-05-19 01:33:21 UTC
#> # A tibble: 1 × 2
#>   count ref                                                                     
#>   <int> <chr>                                                                   
#> 1    NA http://sports.core.api.espn.com/v2/sports/basketball/leagues/wnba/seaso…
#> 
# }