Get ESPN WNBA Team Schedule
Get ESPN WNBA Team Schedule
Usage
espn_wnba_team_schedule(
team_id,
season = most_recent_wnba_season(),
season_type = 2,
...
)Value
A single tibble with one row per event.
| col_name | types | description |
| event_id | character | Unique event / game identifier (ESPN). |
| season | integer | Season identifier (4-digit year or 'YYYY-YY' string). |
| season_type | integer | Season type (1=pre-season, 2=regular season, 3=postseason, 4=off-season for ESPN; or string label for WNBA Stats). |
| week | integer | Week number within the season. |
| date | character | Date in YYYY-MM-DD format. |
| name | character | Display name. |
| short_name | character | Short display name. |
| opponent_id | character | Unique identifier for opponent. |
| opponent_abbrev | character | Abbreviation for opponent. |
| home_away | character | Game venue label ('home' or 'away'). |
| neutral_site | logical | Neutral site. |
| conference_competition | logical | Conference competition. |
| venue_id | character | Unique venue identifier. |
| venue_name | character | Venue name. |
| venue_city | character | Venue city. |
| venue_state | character | Venue state / region. |
| broadcast | character | Broadcast information string. |
| result | character | Result. |
| team_score | character | Team's score / final score. |
| opponent_score | character | Opponent score. |
| winner | logical | Winner. |
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_roster(),
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()
Examples
# \donttest{
espn_wnba_team_schedule(team_id = "17", season = 2025)
#> ── ESPN WNBA Team Schedule from ESPN.com ─────────────────────── wehoop 3.0.0 ──
#> ℹ Data updated: 2026-05-19 01:33:29 UTC
#> # A tibble: 44 × 21
#> event_id season season_type week date name short_name opponent_id
#> <chr> <int> <int> <int> <chr> <chr> <chr> <chr>
#> 1 401736116 2025 NA NA 2025-05-17T1… Las … LV @ NY NA
#> 2 401736121 2025 NA NA 2025-05-20T2… Las … LV @ CON NA
#> 3 401736129 2025 NA NA 2025-05-24T0… Wash… WSH @ LV NA
#> 4 401736137 2025 NA NA 2025-05-25T2… Las … LV @ SEA NA
#> 5 401736148 2025 NA NA 2025-05-31T0… Los … LA @ LV NA
#> 6 401736154 2025 NA NA 2025-06-01T2… Las … LV @ SEA NA
#> 7 401736163 2025 NA NA 2025-06-07T1… Las … LV @ GS NA
#> 8 401736171 2025 NA NA 2025-06-12T0… Los … LA @ LV NA
#> 9 401736175 2025 NA NA 2025-06-14T0… Dall… DAL @ LV NA
#> 10 401736181 2025 NA NA 2025-06-15T2… Phoe… PHX @ LV NA
#> # ℹ 34 more rows
#> # ℹ 13 more variables: opponent_abbrev <chr>, home_away <chr>,
#> # neutral_site <lgl>, conference_competition <lgl>, venue_id <chr>,
#> # venue_name <chr>, venue_city <chr>, venue_state <chr>, broadcast <chr>,
#> # result <chr>, team_score <chr>, opponent_score <chr>, winner <lgl>
# }
