Skip to contents

Get ESPN Women's College Basketball Team Roster

Get ESPN Women's College Basketball Team Roster

Usage

espn_mbb_team_roster(team_id, season = most_recent_mbb_season(), ...)

Arguments

team_id

ESPN team identifier (character or numeric).

season

Season year (numeric). Defaults to the most recent MBB 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_abbrevcharacter
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 MBB Functions: espn_mbb_athletes_index(), espn_mbb_award(), espn_mbb_betting(), espn_mbb_calendar(), espn_mbb_coach(), espn_mbb_coach_record(), espn_mbb_coach_season(), espn_mbb_coaches(), espn_mbb_conferences(), espn_mbb_franchise(), espn_mbb_franchises(), espn_mbb_futures(), espn_mbb_game_all(), espn_mbb_game_broadcasts(), espn_mbb_game_odds(), espn_mbb_game_official_detail(), espn_mbb_game_officials(), espn_mbb_game_play(), espn_mbb_game_play_personnel(), espn_mbb_game_player_box(), espn_mbb_game_powerindex(), espn_mbb_game_predictor(), espn_mbb_game_probabilities(), espn_mbb_game_propbets(), espn_mbb_game_rosters(), espn_mbb_game_situation(), espn_mbb_game_team_leaders(), espn_mbb_game_team_linescores(), espn_mbb_game_team_records(), espn_mbb_game_team_roster(), espn_mbb_game_team_roster_entry(), espn_mbb_game_team_score(), espn_mbb_game_team_statistics(), espn_mbb_injuries(), espn_mbb_leaders(), espn_mbb_news(), espn_mbb_pbp(), espn_mbb_player_awards(), espn_mbb_player_box(), espn_mbb_player_career_stats(), espn_mbb_player_eventlog(), espn_mbb_player_eventlog_v2(), espn_mbb_player_gamelog(), espn_mbb_player_info(), espn_mbb_player_overview(), espn_mbb_player_seasons(), espn_mbb_player_splits(), espn_mbb_player_statisticslog(), espn_mbb_player_stats(), espn_mbb_player_stats_v3(), espn_mbb_position(), espn_mbb_positions(), espn_mbb_powerindex(), espn_mbb_rankings(), espn_mbb_scoreboard(), espn_mbb_season_awards(), espn_mbb_season_group(), espn_mbb_season_group_children(), espn_mbb_season_group_teams(), espn_mbb_season_groups(), espn_mbb_season_info(), espn_mbb_season_leaders(), espn_mbb_season_ranking(), espn_mbb_season_rankings(), espn_mbb_season_type(), espn_mbb_season_types(), espn_mbb_season_week(), espn_mbb_season_weeks(), espn_mbb_seasons(), espn_mbb_standings(), espn_mbb_team(), espn_mbb_team_box(), espn_mbb_team_current_roster(), espn_mbb_team_injuries(), espn_mbb_team_leaders(), espn_mbb_team_news(), espn_mbb_team_odds_records(), espn_mbb_team_record(), espn_mbb_team_record_detail(), espn_mbb_team_schedule(), espn_mbb_team_season_profile(), espn_mbb_team_season_roster(), espn_mbb_team_season_statistics(), espn_mbb_team_stats(), espn_mbb_teams(), espn_mbb_tournament(), espn_mbb_tournament_season(), espn_mbb_tournament_seasons(), espn_mbb_tournaments(), espn_mbb_venues(), espn_mbb_week_ranking(), espn_mbb_week_rankings(), espn_mbb_wp()

Author

Saiem Gilani

Examples

# \donttest{
  espn_mbb_team_roster(team_id = "150", season = 2025)
#> ── ESPN MENS-COLLEGE-BASKETBALL Team Roster from ESPN.com ─────── hoopR 3.1.0 ──
#>  Data updated: 2026-06-04 12:20:21 UTC
#> # A tibble: 14 × 15
#>    athlete_id full_name jersey position_abbrev position_name height weight age  
#>    <chr>      <chr>     <chr>  <chr>           <chr>         <chr>  <chr>  <chr>
#>  1 5041935    Cameron … 12     F               Forward       "6' 9… 250 l… NA   
#>  2 5041937    Cayden B… 2      G               Guard         "6' 4… 205 l… NA   
#>  3 5105337    Maliq Br… 6      F               Forward       "6' 9… 225 l… NA   
#>  4 5341547    Brock Da… 50     G               Guard         "6' 4… 195 l… NA   
#>  5 5061585    Isaiah E… 3      G               Guard         "6' 6… 180 l… NA   
#>  6 4711256    Caleb Fo… 1      G               Guard         "6' 5… 205 l… NA   
#>  7 4873107    Darren H… 8      G               Guard         "6' 5… 195 l… NA   
#>  8 5144124    Nikolas … 14     G               Guard         "6' 8… 215 l… NA   
#>  9 4873209    Patrick … 21     C               Center        "6' 1… 250 l… NA   
#> 10 5287474    Dame Sarr 7      G               Guard         "6' 8… 190 l… NA   
#> 11 4888720    Jack Sco… 20     G               Guard         "6' 6… 220 l… NA   
#> 12 4432321    Cameron … 13     G               Guard         "6' 6… 205 l… NA   
#> 13 5107141    Ifeanyi … 15     C               Center        "6' 1… 240 l… NA   
#> 14 5144150    Sebastia… 5      G               Guard         "6' 8… 220 l… NA   
#> # ℹ 7 more variables: birth_date <chr>, birth_place <chr>, headshot <chr>,
#> #   link_web <chr>, status <chr>, team_id <chr>, season <int>
# }