Skip to contents

Get ESPN Women's College Basketball Team Schedule

Get ESPN Women's College Basketball Team Schedule

Usage

espn_wbb_team_schedule(
  team_id,
  season = most_recent_wbb_season(),
  season_type = 2,
  ...
)

Arguments

team_id

ESPN team identifier (character or numeric).

season

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

season_type

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

...

Additional arguments; currently unused.

Value

A single tibble with one row per event.

col_nametypesdescription
event_idcharacterUnique event / game identifier (ESPN).
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).
weekintegerWeek number within the season.
datecharacterDate in YYYY-MM-DD format.
namecharacterDisplay name.
short_namecharacterShort display name.
opponent_idcharacterUnique identifier for opponent.
opponent_abbrevcharacterAbbreviation for opponent.
home_awaycharacterGame venue label ('home' or 'away').
neutral_sitelogicalNeutral site.
conference_competitionlogicalConference competition.
venue_idcharacterUnique venue identifier.
venue_namecharacterVenue name.
venue_citycharacterVenue city.
venue_statecharacterVenue state / region.
broadcastcharacterBroadcast information string.
resultcharacterResult.
team_scorecharacterTeam's score / final score.
opponent_scorecharacterOpponent score.
winnerlogicalWinner.

See also

Other ESPN WBB Functions: espn_wbb_athlete_awards(), espn_wbb_athlete_career_stats(), espn_wbb_athlete_eventlog(), espn_wbb_athlete_eventlog_v2(), espn_wbb_athlete_gamelog(), espn_wbb_athlete_info(), espn_wbb_athlete_overview(), espn_wbb_athlete_seasons(), espn_wbb_athlete_splits(), espn_wbb_athlete_statisticslog(), espn_wbb_athlete_stats(), espn_wbb_athletes_index(), espn_wbb_award(), espn_wbb_calendar(), espn_wbb_coach(), espn_wbb_coach_season(), espn_wbb_coaches(), espn_wbb_conferences(), espn_wbb_event_broadcasts(), espn_wbb_event_odds(), espn_wbb_event_officials(), espn_wbb_event_powerindex(), espn_wbb_event_predictor(), espn_wbb_event_probabilities(), espn_wbb_event_propbets(), espn_wbb_event_situation(), espn_wbb_franchise(), espn_wbb_franchises(), espn_wbb_game_all(), espn_wbb_game_rosters(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_box(), espn_wbb_player_stats(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), espn_wbb_season_groups(), espn_wbb_season_info(), espn_wbb_season_leaders(), espn_wbb_season_ranking(), espn_wbb_season_rankings(), espn_wbb_season_type(), espn_wbb_season_types(), espn_wbb_season_week(), espn_wbb_season_weeks(), espn_wbb_seasons(), espn_wbb_standings(), espn_wbb_team(), espn_wbb_team_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_roster(), espn_wbb_team_season_profile(), espn_wbb_team_season_roster(), espn_wbb_team_stats(), espn_wbb_teams(), espn_wbb_tournament(), espn_wbb_tournament_seasons(), espn_wbb_tournaments(), espn_wbb_venues(), espn_wbb_week_ranking(), espn_wbb_week_rankings()

Author

Saiem Gilani

Examples

# \donttest{
  espn_wbb_team_schedule(team_id = "2509", season = 2025)
#> ── ESPN WOMENS-COLLEGE-BASKETBALL Team Schedule from ESPN.com ── wehoop 3.0.0 ──
#>  Data updated: 2026-05-19 01:32:54 UTC
#> # A tibble: 29 × 21
#>    event_id  season season_type  week date          name  short_name opponent_id
#>    <chr>      <int>       <int> <int> <chr>         <chr> <chr>      <chr>      
#>  1 401713616   2025          NA     1 2024-11-07T0… Purd… PFW @ PUR  NA         
#>  2 401703046   2025          NA     1 2024-11-11T0… Notr… ND @ PUR   NA         
#>  3 401713617   2025          NA     2 2024-11-15T0… IU I… IUIN @ PUR NA         
#>  4 401713618   2025          NA     3 2024-11-19T0… Bell… BELL @ PUR NA         
#>  5 401713619   2025          NA     3 2024-11-24T1… UT A… UTA @ PUR  NA         
#>  6 401703047   2025          NA     4 2024-11-28T2… Purd… PUR VS MT… NA         
#>  7 401703048   2025          NA     4 2024-11-30T1… Purd… PUR VS SC  NA         
#>  8 401713620   2025          NA     5 2024-12-05T0… Main… ME @ PUR   NA         
#>  9 401721485   2025          NA     5 2024-12-07T1… Mary… MD @ PUR   NA         
#> 10 401703049   2025          NA     6 2024-12-14T2… Kent… UK @ PUR   NA         
#> # ℹ 19 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>
# }