Skip to contents

Get ESPN WNBA Free Agents

Get ESPN WNBA Free Agents

Usage

espn_wnba_freeagents(season = most_recent_wnba_season(), ...)

Arguments

season

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

...

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

Value

A wehoop_data tibble with one row per free agent:

col_nametypes
seasoninteger
athlete_idcharacter
athlete_namecharacter
positioncharacter
prior_team_idcharacter
statuscharacter
signed_team_idcharacter
signed_datecharacter
contract_valuecharacter
contract_term_yearscharacter

Details

Calls the ESPN core-v2 endpoint https://sports.core.api.espn.com/v2/sports/basketball/leagues/wnba/seasons/{year}/freeagents. As of 2026-05, this endpoint returns HTTP 500 for every season tested and there is no documented replacement; the function consequently returns an empty tibble and emits a CLI error message. It is retained so that downstream code does not break if ESPN restores the endpoint, but should not be relied on in the meantime.

Author

Saiem Gilani

Examples

# \donttest{
  espn_wnba_freeagents(season = 2025)
#>  2026-05-06 04:51:32.012679: Failed to retrieve ESPN WNBA free agents for season 2025
#>  Args: season = 2025
#>  Error: The API returned an error
#> data frame with 0 columns and 0 rows
# }