Skip to contents

Returns metadata for one group (conference or division) in one (WBB season x season-type), plus $ref URLs to its parent group, children groups, member teams, and standings.

Returns the list of child groups (e.g. divisions within a conference) for one (WBB season x season-type x parent-group).

Returns the list of team IDs that belong to one group (conference or division) for one (WBB season x season-type).

Usage

espn_wbb_season_group(
  group_id,
  season = most_recent_wbb_season(),
  season_type = 2L,
  ...
)

espn_wbb_season_group_children(
  group_id,
  season = most_recent_wbb_season(),
  season_type = 2L,
  ...
)

espn_wbb_season_group_teams(
  group_id,
  season = most_recent_wbb_season(),
  season_type = 2L,
  ...
)

Arguments

group_id

ESPN group identifier.

season

Season year. Defaults to most recent WBB season.

season_type

Season-type id (2 = regular (default)).

...

Additional arguments; currently unused.

Value

A single-row tibble.

Columns as documented in the shared espn_basketball_season_group_schema table.

A tibble with one row per child group.

col_nametypesdescription
leaguecharacterLeague slug.
seasonintegerSeason year.
season_typeintegerSeason-type id.
parent_group_idcharacterParent group id (queried).
child_group_idcharacterChild group id.
refcharacter$ref to child group detail.

A tibble with one row per team in the group.

col_nametypesdescription
leaguecharacterLeague slug.
seasonintegerSeason year.
season_typeintegerSeason-type id.
group_idcharacterESPN group id.
team_idcharacterESPN team id.
refcharacter$ref URL to the team-in-season entry.

Details

Get ESPN WBB Season Group Detail

Get ESPN WBB Season Group Children Index

Get ESPN WBB Season Group Teams Index

See also

Other ESPN WBB Functions: espn_wbb_athletes_index(), espn_wbb_award(), espn_wbb_calendar(), espn_wbb_coach(), espn_wbb_coach_record(), espn_wbb_coach_season(), espn_wbb_coaches(), espn_wbb_conferences(), espn_wbb_franchise(), espn_wbb_franchises(), espn_wbb_game_all(), espn_wbb_game_odds(), espn_wbb_game_official_detail(), espn_wbb_game_play(), espn_wbb_game_play_personnel(), espn_wbb_game_player_box(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_team_linescores(), espn_wbb_game_team_roster_entry(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_player_awards(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog_v2(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_stats(), espn_wbb_position(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), 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_injuries(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_schedule(), espn_wbb_team_season_roster(), espn_wbb_team_season_statistics(), espn_wbb_team_stats(), espn_wbb_teams(), espn_wbb_tournament(), espn_wbb_tournament_season(), 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_season_group(group_id = 5, season = 2025)
#> ── ESPN WOMENS-COLLEGE-BASKETBALL Season Group Detail ────────── wehoop 3.0.0 ──
#>  Data updated: 2026-08-24 18:03:40 UTC
#> # A tibble: 1 × 15
#>   league         season season_type group_id uid   name  abbreviation short_name
#>   <chr>           <int>       <int> <chr>    <chr> <chr> <chr>        <chr>     
#> 1 womens-colleg…   2025           2 5        s:40… Big … bsky         Big Sky   
#> # ℹ 7 more variables: midsize_name <chr>, is_conference <lgl>, slug <chr>,
#> #   parent_ref <chr>, children_ref <chr>, teams_ref <chr>, standings_ref <chr>
# }
# \donttest{
  espn_wbb_season_group_children(group_id = 5, season = 2025)
#> ── ESPN WOMENS-COLLEGE-BASKETBALL Season Group Children Index ── wehoop 3.0.0 ──
#>  Data updated: 2026-08-24 18:03:40 UTC
#> # A tibble: 0 × 6
#> # ℹ 6 variables: league <chr>, season <int>, season_type <int>,
#> #   parent_group_id <chr>, child_group_id <chr>, ref <chr>
# }
# \donttest{
  espn_wbb_season_group_teams(group_id = 5, season = 2025)
#> ── ESPN WOMENS-COLLEGE-BASKETBALL Season Group Teams Index ───── wehoop 3.0.0 ──
#>  Data updated: 2026-08-24 18:03:40 UTC
#> # A tibble: 10 × 6
#>    league                    season season_type group_id team_id ref            
#>    <chr>                      <int>       <int> <chr>    <chr>   <chr>          
#>  1 womens-college-basketball   2025           2 5        16      http://sports.…
#>  2 womens-college-basketball   2025           2 5        70      http://sports.…
#>  3 womens-college-basketball   2025           2 5        147     http://sports.…
#>  4 womens-college-basketball   2025           2 5        149     http://sports.…
#>  5 womens-college-basketball   2025           2 5        304     http://sports.…
#>  6 womens-college-basketball   2025           2 5        331     http://sports.…
#>  7 womens-college-basketball   2025           2 5        2458    http://sports.…
#>  8 womens-college-basketball   2025           2 5        2464    http://sports.…
#>  9 womens-college-basketball   2025           2 5        2502    http://sports.…
#> 10 womens-college-basketball   2025           2 5        2692    http://sports.…
# }