Skip to contents

Get ESPN Women's College Basketball Season Info

Get ESPN Women's College Basketball Season Info

Usage

espn_wbb_season_info(season = most_recent_wbb_season(), ...)

Arguments

season

Season year (numeric, e.g. 2025). Defaults to the most recent WBB season.

...

Additional arguments; currently unused but retained for forward compatibility. Proxy configuration should use options(wehoop.proxy = ...) – see ?wehoop for details.

Value

A named list of wehoop_data tibbles: Info, Types, Athletes, Coaches, Teams, Awards. $ref URL components are returned as character columns and are NOT auto-resolved – use targeted endpoint functions for details.

Info

col_nametypes
yearinteger
start_datecharacter
end_datecharacter
display_namecharacter
type_idcharacter
type_namecharacter

Types / Athletes / Coaches / Teams / Awards

col_nametypes
countinteger
refcharacter

Author

Saiem Gilani

Examples

# \donttest{
  espn_wbb_season_info(season = 2025)
#> $Info
#> ── ESPN WOMENS-COLLEGE-BASKETBALL Season Info from ESPN.com ──── wehoop 3.0.0 ──
#>  Data updated: 2026-05-06 04:51:18 UTC
#> # A tibble: 1 × 6
#>    year start_date        end_date          display_name type_id type_name 
#>   <int> <chr>             <chr>             <chr>        <chr>   <chr>     
#> 1  2025 2024-07-13T07:00Z 2025-04-09T06:59Z 2024-25      3       Postseason
#> 
#> $Types
#> ── ESPN WOMENS-COLLEGE-BASKETBALL Season Types from ESPN.com ─── wehoop 3.0.0 ──
#>  Data updated: 2026-05-06 04:51:18 UTC
#> # A tibble: 1 × 2
#>   count ref                                                                     
#>   <int> <chr>                                                                   
#> 1     4 http://sports.core.api.espn.com/v2/sports/basketball/leagues/womens-col…
#> 
#> $Athletes
#> ── ESPN WOMENS-COLLEGE-BASKETBALL Season Athletes from ESPN.com ────────────────
#>  Data updated: 2026-05-06 04:51:18 UTC
#> # A tibble: 1 × 2
#>   count ref                                                                     
#>   <int> <chr>                                                                   
#> 1    NA http://sports.core.api.espn.com/v2/sports/basketball/leagues/womens-col…
#> 
#> $Coaches
#> ── ESPN WOMENS-COLLEGE-BASKETBALL Season Coaches from ESPN.com ─────────────────
#>  Data updated: 2026-05-06 04:51:18 UTC
#> # A tibble: 0 × 0
#> 
#> $Teams
#> ── ESPN WOMENS-COLLEGE-BASKETBALL Season Teams from ESPN.com ─── wehoop 3.0.0 ──
#>  Data updated: 2026-05-06 04:51:18 UTC
#> # A tibble: 0 × 0
#> 
#> $Awards
#> ── ESPN WOMENS-COLLEGE-BASKETBALL Season Awards from ESPN.com ── wehoop 3.0.0 ──
#>  Data updated: 2026-05-06 04:51:18 UTC
#> # A tibble: 1 × 2
#>   count ref                                                                     
#>   <int> <chr>                                                                   
#> 1    NA http://sports.core.api.espn.com/v2/sports/basketball/leagues/womens-col…
#> 
# }