Skip to contents

Get ESPN WNBA Team News

Get ESPN WNBA Team News

Usage

espn_wnba_team_news(team_id, limit = 25)

Arguments

team_id

character or integer. ESPN team ID (e.g. 17 for Las Vegas Aces).

limit

integer. Maximum number of articles to return. Default 25.

Value

Returns a tibble of team news articles.

col_nametypes
idcharacter
typecharacter
headlinecharacter
descriptioncharacter
publishedcharacter
premiumlogical
bylinecharacter
link_webcharacter
league_idcharacter

Details

Retrieve ESPN WNBA news for a specific team. Uses getOption("wehoop.proxy") or http_proxy/https_proxy environment variables for proxy configuration (per-call proxy override is not supported for ESPN wrappers).

Author

Saiem Gilani

Examples

# \donttest{
  espn_wnba_team_news(team_id = "17", limit = 5)
#> ── ESPN WNBA Team News (team_id=17) from ESPN.com ────────────── wehoop 3.0.0 ──
#>  Data updated: 2026-05-06 04:51:41 UTC
#> # A tibble: 4 × 9
#>        id type  headline description published premium byline link_web league_id
#>     <int> <chr> <chr>    <chr>       <chr>     <lgl>   <chr>  <chr>    <chr>    
#> 1  4.87e7 Head… WNBA GM… The annual… 2026-05-… FALSE   Micha… https:/… 59       
#> 2  4.87e7 Story WNBA 20… Where do a… 2026-05-… FALSE   Micha… https:/… 59       
#> 3  4.87e7 Media Athlete… Check out … 2026-05-… FALSE   NA     https:/… 46       
#> 4  4.87e7 Story 2026 Me… Venus Will… 2026-05-… FALSE   Charl… https:/… 3700     
# }