Skip to contents

Get ESPN WNBA Athletes Index

Get ESPN WNBA Athletes Index

Usage

espn_wnba_athletes_index(
  season = most_recent_wnba_season(),
  active = TRUE,
  limit = 5000L,
  ...
)

Arguments

season

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

active

logical. When TRUE (default) only active athletes are returned. Set to FALSE for the full historical roster.

limit

integer. Maximum number of rows to return. Default 5000. Pass a small value (e.g. limit = 50) in tests to keep execution fast.

...

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

Value

A single wehoop_data tibble with one row per athlete.

col_nametypes
athlete_idcharacter
full_namecharacter
jerseycharacter
positioncharacter
team_idcharacter
headshotcharacter
statuscharacter
linkcharacter

Author

Saiem Gilani

Examples

# \donttest{
  espn_wnba_athletes_index(season = 2025, limit = 50)
#> Fetching page 1 of 1 for wnba athletes (season=2025)...
#> ── ESPN WNBA Athletes Index from ESPN.com ────────────────────── wehoop 3.0.0 ──
#>  Data updated: 2026-05-06 04:51:28 UTC
#> # A tibble: 50 × 9
#>    athlete_id full_name jersey position team_id headshot status link     ref_url
#>    <chr>      <chr>     <chr>  <chr>    <chr>   <chr>    <chr>  <chr>    <chr>  
#>  1 924        NA        NA     NA       NA      NA       NA     http://… http:/…
#>  2 2529047    NA        NA     NA       NA      NA       NA     http://… http:/…
#>  3 3904577    NA        NA     NA       NA      NA       NA     http://… http:/…
#>  4 3906949    NA        NA     NA       NA      NA       NA     http://… http:/…
#>  5 3913881    NA        NA     NA       NA      NA       NA     http://… http:/…
#>  6 4336633    NA        NA     NA       NA      NA       NA     http://… http:/…
#>  7 4399415    NA        NA     NA       NA      NA       NA     http://… http:/…
#>  8 4433730    NA        NA     NA       NA      NA       NA     http://… http:/…
#>  9 4433790    NA        NA     NA       NA      NA       NA     http://… http:/…
#> 10 4433807    NA        NA     NA       NA      NA       NA     http://… http:/…
#> # ℹ 40 more rows
# }