
Get ESPN Women's College Basketball Team Roster
Source:R/espn_mbb_team_detail.R
espn_mbb_team_roster.RdGet 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(), ...)Value
A single tibble with one row per athlete.
| col_name | types | description |
| athlete_id | character | Unique athlete identifier (ESPN). |
| full_name | character | Player's full name. |
| jersey | character | Jersey number worn by the player. |
| position_abbrev | character | |
| position_name | character | Listed roster position ('Guard', 'Forward', 'Center'). |
| height | character | Player height (string e.g. '6-2' or inches). |
| weight | character | Player weight in pounds. |
| age | character | Player age (in years). |
| birth_date | character | Date of birth (YYYY-MM-DD). |
| birth_place | character | Place of birth. |
| headshot | character | Headshot image URL. |
| link_web | character | Web link / URL. |
| status | character | Status label. |
| team_id | character | Unique team identifier. |
| season | integer | Season identifier (4-digit year or 'YYYY-YY' string). |
See also
Other ESPN MBB Functions:
espn_mbb_athlete_awards(),
espn_mbb_athlete_career_stats(),
espn_mbb_athlete_eventlog(),
espn_mbb_athlete_eventlog_v2(),
espn_mbb_athlete_gamelog(),
espn_mbb_athlete_info(),
espn_mbb_athlete_overview(),
espn_mbb_athlete_seasons(),
espn_mbb_athlete_splits(),
espn_mbb_athlete_statisticslog(),
espn_mbb_athlete_stats(),
espn_mbb_athletes_index(),
espn_mbb_award(),
espn_mbb_betting(),
espn_mbb_calendar(),
espn_mbb_coach(),
espn_mbb_coach_season(),
espn_mbb_coaches(),
espn_mbb_conferences(),
espn_mbb_event_broadcasts(),
espn_mbb_event_odds(),
espn_mbb_event_officials(),
espn_mbb_event_powerindex(),
espn_mbb_event_predictor(),
espn_mbb_event_probabilities(),
espn_mbb_event_propbets(),
espn_mbb_event_situation(),
espn_mbb_franchise(),
espn_mbb_franchises(),
espn_mbb_futures(),
espn_mbb_game_all(),
espn_mbb_game_rosters(),
espn_mbb_injuries(),
espn_mbb_leaders(),
espn_mbb_news(),
espn_mbb_pbp(),
espn_mbb_player_box(),
espn_mbb_player_stats(),
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_schedule(),
espn_mbb_team_season_profile(),
espn_mbb_team_season_roster(),
espn_mbb_team_stats(),
espn_mbb_teams(),
espn_mbb_tournament(),
espn_mbb_tournament_seasons(),
espn_mbb_tournaments(),
espn_mbb_venues(),
espn_mbb_week_ranking(),
espn_mbb_week_rankings(),
espn_mbb_wp()
Examples
# \donttest{
espn_mbb_team_roster(team_id = "2509", season = 2025)
#> ── ESPN MENS-COLLEGE-BASKETBALL Team Roster from ESPN.com ─────── hoopR 3.1.0 ──
#> ℹ Data updated: 2026-05-19 01:33:31 UTC
#> # A tibble: 16 × 15
#> athlete_id full_name jersey position_abbrev position_name height weight age
#> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr>
#> 1 5102618 Jack Ben… 14 G Guard "6' 6… 215 l… NA
#> 2 5061582 Raleigh … 34 F Forward "6' 1… 245 l… NA
#> 3 5174973 Oscar Cl… 45 C Center "6' 1… 255 l… NA
#> 4 5175591 C.J. Cox 0 G Guard "6' 3… 195 l… NA
#> 5 5239503 Aaron Fi… 6 G Guard "6' 2… 190 l… NA
#> 6 5101658 Gicarri … 24 G Guard "6' 3… 210 l… NA
#> 7 5144147 Daniel J… 12 C Center "7' 4… 250 l… NA
#> 8 4897438 Trey Kau… 4 F Forward "6' 9… 240 l… NA
#> 9 5105856 Sam King 7 F Forward "6' 9… 230 l… NA
#> 10 5105853 Fletcher… 2 G Guard "6' 5… 180 l… NA
#> 11 5239504 Jack Lusk 9 G Guard "6' 4… 195 l… NA
#> 12 5312035 Omer May… 17 G Guard "6' 4… 215 l… NA
#> 13 4702975 Liam Mur… 5 F Forward "6' 8… 225 l… NA
#> 14 5174804 Jace Rayl 32 G Guard "5' 1… 175 l… NA
#> 15 5105854 Braden S… 3 G Guard "6' 0… 170 l… NA
#> 16 5144111 Antione … 1 G Guard "6' 3… 195 l… NA
#> # ℹ 7 more variables: birth_date <chr>, birth_place <chr>, headshot <chr>,
#> # link_web <chr>, status <chr>, team_id <chr>, season <int>
# }