Package 'wehoop'

Title: Access Women's Basketball Play by Play Data
Description: A utility for working with women's basketball data. A scraping and aggregating interface for the WNBA Stats API <https://stats.wnba.com/> and ESPN's <https://www.espn.com> women's college basketball and WNBA statistics. It provides users with the capability to access the game play-by-plays, box scores, standings and results to analyze the data for themselves.
Authors: Saiem Gilani [aut, cre, cph] (ORCID: <https://orcid.org/0000-0002-7194-9067>), Geoffery Hutchinson [aut]
Maintainer: Saiem Gilani <[email protected]>
License: MIT + file LICENSE
Version: 3.0.0
Built: 2026-06-09 11:01:25 UTC
Source: https://github.com/sportsdataverse/wehoop

Help Index


Add players on court in WNBA Stats API play-by-play

Description

Add players on court in WNBA Stats API play-by-play


Check Status function

Description

Check Status function

Usage

check_status(res)

Arguments

res

Response from an httr2 request


Load .csv / .csv.gz file from a remote connection

Description

This is a thin wrapper on data.table::fread

Usage

csv_from_url(...)

Arguments

...

passed to data.table::fread


ESPN Basketball Endpoint Overview (WNBA + WBB)

Description

Wrappers around ESPN's basketball endpoints. Two parallel families share a common set of internal helpers in R/espn_basketball_*.R:

  • ⁠espn_wnba_*()⁠ — ESPN WNBA wrappers

  • ⁠espn_wbb_*()⁠ — ESPN women's college basketball wrappers

Each public wrapper is a thin shim over an internal helper that takes a league argument ("wnba" or "womens-college-basketball"); the helper does the actual HTTP call + parsing. Error reporting flows through ESPN-side reporters .report_api_error() / .report_api_warning() in R/utils.R (do not use raw cli::cli_alert_danger() here — that is the WNBA Stats convention).

Details

Play-by-play, scoreboard, schedule

WNBA function WBB function
espn_wnba_pbp() espn_wbb_pbp()
espn_wnba_scoreboard() espn_wbb_scoreboard()
espn_wnba_game_all() espn_wbb_game_all()
espn_wnba_game_rosters() espn_wbb_game_rosters()
espn_wnba_player_box() espn_wbb_player_box()
espn_wnba_team_box() espn_wbb_team_box()

Reference data

WNBA function WBB function
espn_wnba_teams() espn_wbb_teams()
espn_wnba_standings() espn_wbb_standings()
espn_wnba_player_stats() espn_wbb_player_stats()
espn_wnba_team_stats() espn_wbb_team_stats()
espn_wbb_conferences()
espn_wbb_rankings()

HTTP layer

ESPN wrappers call .retry_request() directly without ..., so per-call proxy overrides aren't supported. Use options(wehoop.proxy = ...) or the http_proxy / https_proxy env vars for proxy routing.


Get ESPN Women's College Basketball Athletes Index

Description

Get ESPN Women's College Basketball Athletes Index

Get ESPN Women's College Basketball Athletes Index

Usage

espn_wbb_athletes_index(
  season = most_recent_wbb_season(),
  active = TRUE,
  limit = 25000L,
  ...
)

Arguments

season

Season year (numeric, e.g. 2025). Defaults to the most recent WBB 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 25000. WBB can return 6,000-12,000 athletes per season; increase if needed. 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_name types description
athlete_id character Unique athlete identifier (ESPN).
full_name character Player's full name.
jersey character Jersey number worn by the player.
position character Listed roster position (G, F, C, etc.).
team_id character Unique team identifier.
headshot character Headshot image URL.
status character Status label.
link character Link.

Author(s)

Saiem Gilani

See Also

Other ESPN WBB Functions: 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_broadcasts(), espn_wbb_game_odds(), espn_wbb_game_official_detail(), espn_wbb_game_officials(), espn_wbb_game_play(), espn_wbb_game_play_personnel(), espn_wbb_game_player_box(), espn_wbb_game_powerindex(), espn_wbb_game_predictor(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_rosters(), espn_wbb_game_situation(), espn_wbb_game_team_leaders(), espn_wbb_game_team_linescores(), espn_wbb_game_team_records(), espn_wbb_game_team_roster(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_score(), espn_wbb_game_team_statistics(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_awards(), espn_wbb_player_box(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog(), espn_wbb_player_eventlog_v2(), espn_wbb_player_gamelog(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_splits(), espn_wbb_player_statisticslog(), espn_wbb_player_stats(), espn_wbb_player_stats_v3(), espn_wbb_position(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), 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_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), 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()

Examples

espn_wbb_athletes_index(season = 2025, limit = 50)

Get ESPN WBB Season Award Detail

Description

Returns the name, description, and winners of one WBB season award.

Usage

espn_wbb_award(award_id, season = most_recent_wbb_season(), ...)

Arguments

award_id

ESPN award identifier (character or numeric).

season

Season year (numeric). Defaults to the most recent WBB season.

...

Additional arguments; currently unused.

Value

A tibble with one row per winner.

col_name types description
league character League slug.
season integer Season year.
award_id character ESPN award identifier.
name character Award name.
description character Award description.
athlete_id character ESPN athlete id of winner.
team_id character ESPN team id.
athlete_ref character ⁠$ref⁠ to winner's per-season athlete resource.
team_ref character ⁠$ref⁠ to winner's per-season team resource.

Author(s)

Saiem Gilani

See Also

Other ESPN WBB Functions: espn_wbb_athletes_index(), 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_broadcasts(), espn_wbb_game_odds(), espn_wbb_game_official_detail(), espn_wbb_game_officials(), espn_wbb_game_play(), espn_wbb_game_play_personnel(), espn_wbb_game_player_box(), espn_wbb_game_powerindex(), espn_wbb_game_predictor(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_rosters(), espn_wbb_game_situation(), espn_wbb_game_team_leaders(), espn_wbb_game_team_linescores(), espn_wbb_game_team_records(), espn_wbb_game_team_roster(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_score(), espn_wbb_game_team_statistics(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_awards(), espn_wbb_player_box(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog(), espn_wbb_player_eventlog_v2(), espn_wbb_player_gamelog(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_splits(), espn_wbb_player_statisticslog(), espn_wbb_player_stats(), espn_wbb_player_stats_v3(), espn_wbb_position(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), 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_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), 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()

Examples

espn_wbb_award(award_id = 344, season = 2024)

Get ESPN WBB Calendar

Description

Get ESPN WBB Calendar

Get ESPN Women's College Basketball Calendar

Usage

espn_wbb_calendar(season = most_recent_wbb_season())

Arguments

season

integer or character. Four-digit season year (e.g. 2025). Defaults to most_recent_wbb_season().

Details

Retrieve the ESPN women's college basketball schedule calendar for a given season. The underlying scoreboard response contains a leagues[[1]]$calendar block with season-type entries (pre-season, regular, post). Uses getOption("wehoop.proxy") or http_proxy/https_proxy environment variables for proxy configuration (per-call proxy override is not supported for ESPN wrappers).

Value

Returns a tibble of calendar entries.

col_name types description
season character Season identifier (4-digit year or 'YYYY-YY' string).
season_type character Season type (1=pre-season, 2=regular season, 3=postseason, 4=off-season for ESPN; or string label for WNBA Stats).
season_type_label character Season type label.
season_start_date character Date in YYYY-MM-DD format.
season_end_date character Date in YYYY-MM-DD format.
label character Label.
alternate_label character Alternate label.
detail character Detail.
value character Numeric or string value field.
start_date character Start date (YYYY-MM-DD).
end_date character End date (YYYY-MM-DD).

Author(s)

Saiem Gilani

See Also

Other ESPN WBB Functions: espn_wbb_athletes_index(), espn_wbb_award(), 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_broadcasts(), espn_wbb_game_odds(), espn_wbb_game_official_detail(), espn_wbb_game_officials(), espn_wbb_game_play(), espn_wbb_game_play_personnel(), espn_wbb_game_player_box(), espn_wbb_game_powerindex(), espn_wbb_game_predictor(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_rosters(), espn_wbb_game_situation(), espn_wbb_game_team_leaders(), espn_wbb_game_team_linescores(), espn_wbb_game_team_records(), espn_wbb_game_team_roster(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_score(), espn_wbb_game_team_statistics(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_awards(), espn_wbb_player_box(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog(), espn_wbb_player_eventlog_v2(), espn_wbb_player_gamelog(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_splits(), espn_wbb_player_statisticslog(), espn_wbb_player_stats(), espn_wbb_player_stats_v3(), espn_wbb_position(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), 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_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), 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()

Examples

espn_wbb_calendar(season = 2025)

Get ESPN WBB Single-Coach Detail

Description

Returns biography, current team / college refs, and counts of career record entries + per-season coaching entries for one WBB head coach.

Usage

espn_wbb_coach(coach_id, ...)

Arguments

coach_id

ESPN coach identifier (character or numeric).

...

Additional arguments; currently unused.

Value

A single-row tibble.

col_name types description
coach_id character ESPN coach identifier.
uid character ESPN UID string.
first_name character First name.
last_name character Last name.
date_of_birth character Date of birth (ISO 8601).
birth_city character Birth city.
birth_state character Birth state / region.
n_career_records integer Count of career-records entries.
n_coach_seasons integer Count of seasons coached.
college_ref character ⁠$ref⁠ to the coach's college.
team_ref character ⁠$ref⁠ to the coach's current team.
league character League slug.

Author(s)

Saiem Gilani

See Also

Other ESPN WBB Functions: espn_wbb_athletes_index(), espn_wbb_award(), espn_wbb_calendar(), 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_broadcasts(), espn_wbb_game_odds(), espn_wbb_game_official_detail(), espn_wbb_game_officials(), espn_wbb_game_play(), espn_wbb_game_play_personnel(), espn_wbb_game_player_box(), espn_wbb_game_powerindex(), espn_wbb_game_predictor(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_rosters(), espn_wbb_game_situation(), espn_wbb_game_team_leaders(), espn_wbb_game_team_linescores(), espn_wbb_game_team_records(), espn_wbb_game_team_roster(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_score(), espn_wbb_game_team_statistics(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_awards(), espn_wbb_player_box(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog(), espn_wbb_player_eventlog_v2(), espn_wbb_player_gamelog(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_splits(), espn_wbb_player_statisticslog(), espn_wbb_player_stats(), espn_wbb_player_stats_v3(), espn_wbb_position(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), 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_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), 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()

Examples

espn_wbb_coach(coach_id = 2167842)

Get ESPN WBB Coach Career Record (Long Format)

Description

Returns a coach's career record by type in long format (one row per stat in the record's stats[] array). record_type codes commonly populated: 0 = Total, 1 = Pre Season, 2 = Regular Season, 3 = Post Season. Use espn_wbb_coaches() to discover coach_ids for a season.

Usage

espn_wbb_coach_record(coach_id, record_type = 0L, ...)

Arguments

coach_id

ESPN coach identifier (use espn_wbb_coaches() to find).

record_type

Integer record type: 0 = Total (default), 1 = Pre Season, 2 = Regular Season, 3 = Post Season.

...

Additional arguments; currently unused.

Value

A long tibble.

Author(s)

Saiem Gilani

See Also

Other ESPN WBB Functions: espn_wbb_athletes_index(), espn_wbb_award(), espn_wbb_calendar(), espn_wbb_coach(), espn_wbb_coach_season(), espn_wbb_coaches(), espn_wbb_conferences(), espn_wbb_franchise(), espn_wbb_franchises(), espn_wbb_game_all(), espn_wbb_game_broadcasts(), espn_wbb_game_odds(), espn_wbb_game_official_detail(), espn_wbb_game_officials(), espn_wbb_game_play(), espn_wbb_game_play_personnel(), espn_wbb_game_player_box(), espn_wbb_game_powerindex(), espn_wbb_game_predictor(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_rosters(), espn_wbb_game_situation(), espn_wbb_game_team_leaders(), espn_wbb_game_team_linescores(), espn_wbb_game_team_records(), espn_wbb_game_team_roster(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_score(), espn_wbb_game_team_statistics(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_awards(), espn_wbb_player_box(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog(), espn_wbb_player_eventlog_v2(), espn_wbb_player_gamelog(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_splits(), espn_wbb_player_statisticslog(), espn_wbb_player_stats(), espn_wbb_player_stats_v3(), espn_wbb_position(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), 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_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), 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()

Examples

espn_wbb_coach_record(coach_id = 2167842, record_type = 2)

Get ESPN WBB Coach-in-Season Detail

Description

Per-season coach detail (name, birth info, ⁠$ref⁠s to team/college/ person). ESPN's coverage of this endpoint is sparse; many (coach × season) combinations return 404.

Usage

espn_wbb_coach_season(coach_id, season = most_recent_wbb_season(), ...)

Arguments

coach_id

ESPN coach identifier.

season

Season year. Defaults to most recent WBB season.

...

Additional arguments; currently unused.

Details

Get ESPN WBB Coach-in-Season Detail

Value

A single-row tibble.

col_name types description
league character League slug.
season integer Season year.
coach_id character ESPN coach id.
uid character ESPN UID string.
first_name character First name.
last_name character Last name.
date_of_birth character Date of birth.
birth_city character Birth city.
birth_state character Birth state / region.
n_records integer Count of records entries.
person_ref character ⁠$ref⁠ to person resource.
college_ref character ⁠$ref⁠ to college.
team_ref character ⁠$ref⁠ to team-in-season.

Author(s)

Saiem Gilani

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_coaches(), espn_wbb_conferences(), espn_wbb_franchise(), espn_wbb_franchises(), espn_wbb_game_all(), espn_wbb_game_broadcasts(), espn_wbb_game_odds(), espn_wbb_game_official_detail(), espn_wbb_game_officials(), espn_wbb_game_play(), espn_wbb_game_play_personnel(), espn_wbb_game_player_box(), espn_wbb_game_powerindex(), espn_wbb_game_predictor(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_rosters(), espn_wbb_game_situation(), espn_wbb_game_team_leaders(), espn_wbb_game_team_linescores(), espn_wbb_game_team_records(), espn_wbb_game_team_roster(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_score(), espn_wbb_game_team_statistics(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_awards(), espn_wbb_player_box(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog(), espn_wbb_player_eventlog_v2(), espn_wbb_player_gamelog(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_splits(), espn_wbb_player_statisticslog(), espn_wbb_player_stats(), espn_wbb_player_stats_v3(), espn_wbb_position(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), 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_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), 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()

Examples

espn_wbb_coach_season(coach_id = 2167842, season = 2025)

Get ESPN Women's College Basketball Coaches

Description

Get ESPN Women's College Basketball Coaches

Get ESPN Women's College Basketball Coaches

Usage

espn_wbb_coaches(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 single wehoop_data tibble with one row per coach.

col_name types description
coach_id character Unique identifier for coach.
first_name character Player's first name.
last_name character Player's last name.
full_name character Player's full name.
experience integer Years of professional experience.
team_id character Unique team identifier.

Author(s)

Saiem Gilani

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_conferences(), espn_wbb_franchise(), espn_wbb_franchises(), espn_wbb_game_all(), espn_wbb_game_broadcasts(), espn_wbb_game_odds(), espn_wbb_game_official_detail(), espn_wbb_game_officials(), espn_wbb_game_play(), espn_wbb_game_play_personnel(), espn_wbb_game_player_box(), espn_wbb_game_powerindex(), espn_wbb_game_predictor(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_rosters(), espn_wbb_game_situation(), espn_wbb_game_team_leaders(), espn_wbb_game_team_linescores(), espn_wbb_game_team_records(), espn_wbb_game_team_roster(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_score(), espn_wbb_game_team_statistics(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_awards(), espn_wbb_player_box(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog(), espn_wbb_player_eventlog_v2(), espn_wbb_player_gamelog(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_splits(), espn_wbb_player_statisticslog(), espn_wbb_player_stats(), espn_wbb_player_stats_v3(), espn_wbb_position(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), 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_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), 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()

Examples

espn_wbb_coaches(season = 2025)

Get women's college basketball conferences

Description

Get women's college basketball conferences

Usage

espn_wbb_conferences()

Value

Returns a tibble

col_name types description
group_id integer Group identifier (e.g. conference group_id).
conference_short_name character Conference short name (e.g. 'ACC').
conference_uid character ESPN universal conference identifier.
conference_name character Full conference name.
conference_logo character Logo image URL for conference.
parent_group_id integer Unique identifier for parent group.
conference_id integer Conference identifier.

Author(s)

Saiem Gilani

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_franchise(), espn_wbb_franchises(), espn_wbb_game_all(), espn_wbb_game_broadcasts(), espn_wbb_game_odds(), espn_wbb_game_official_detail(), espn_wbb_game_officials(), espn_wbb_game_play(), espn_wbb_game_play_personnel(), espn_wbb_game_player_box(), espn_wbb_game_powerindex(), espn_wbb_game_predictor(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_rosters(), espn_wbb_game_situation(), espn_wbb_game_team_leaders(), espn_wbb_game_team_linescores(), espn_wbb_game_team_records(), espn_wbb_game_team_roster(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_score(), espn_wbb_game_team_statistics(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_awards(), espn_wbb_player_box(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog(), espn_wbb_player_eventlog_v2(), espn_wbb_player_gamelog(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_splits(), espn_wbb_player_statisticslog(), espn_wbb_player_stats(), espn_wbb_player_stats_v3(), espn_wbb_position(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), 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_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), 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()

Examples

try(espn_wbb_conferences())

Get ESPN WBB Franchise Detail

Description

Returns franchise-level metadata for a women's college basketball program. Franchise IDs are stable across program reorganization or rebrands.

Usage

espn_wbb_franchise(franchise_id, ...)

Arguments

franchise_id

ESPN franchise identifier (character or numeric).

...

Additional arguments; currently unused.

Value

A single-row tibble.

col_name types description
id character ESPN franchise identifier.
uid character ESPN UID string.
slug character URL-safe identifier.
location character Franchise location.
name character Franchise name.
nickname character Common nickname.
abbreviation character Short abbreviation.
display_name character Full display name.
short_display_name character Short display name.
color character Primary color (hex, no leading '#').
is_active logical Whether franchise is currently active.
league character League slug.
logo character Primary logo URL.
logo_dark character Dark-mode logo URL.
venue_ref character ⁠$ref⁠ to franchise's primary venue.
team_ref character ⁠$ref⁠ to the current team for franchise.

Author(s)

Saiem Gilani

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_franchises(), espn_wbb_game_all(), espn_wbb_game_broadcasts(), espn_wbb_game_odds(), espn_wbb_game_official_detail(), espn_wbb_game_officials(), espn_wbb_game_play(), espn_wbb_game_play_personnel(), espn_wbb_game_player_box(), espn_wbb_game_powerindex(), espn_wbb_game_predictor(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_rosters(), espn_wbb_game_situation(), espn_wbb_game_team_leaders(), espn_wbb_game_team_linescores(), espn_wbb_game_team_records(), espn_wbb_game_team_roster(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_score(), espn_wbb_game_team_statistics(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_awards(), espn_wbb_player_box(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog(), espn_wbb_player_eventlog_v2(), espn_wbb_player_gamelog(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_splits(), espn_wbb_player_statisticslog(), espn_wbb_player_stats(), espn_wbb_player_stats_v3(), espn_wbb_position(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), 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_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), 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()

Examples

espn_wbb_franchise(franchise_id = 2509)

Get ESPN WBB Franchises Index

Description

Returns the full WBB franchises index from sports.core.api.espn.com/v2/sports/basketball/leagues/womens-college-basketball/franchises. Each row is one franchise with its ID and the canonical ⁠$ref⁠ URL — pass an ID to espn_wbb_franchise() for full franchise detail.

Usage

espn_wbb_franchises(...)

Arguments

...

Additional arguments; currently unused.

Value

A tibble with one row per franchise.

col_name types description
franchise_id character ESPN franchise identifier.
ref character Full ⁠$ref⁠ URL for franchise detail.
league character League slug ("womens-college-basketball").

Author(s)

Saiem Gilani

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_game_all(), espn_wbb_game_broadcasts(), espn_wbb_game_odds(), espn_wbb_game_official_detail(), espn_wbb_game_officials(), espn_wbb_game_play(), espn_wbb_game_play_personnel(), espn_wbb_game_player_box(), espn_wbb_game_powerindex(), espn_wbb_game_predictor(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_rosters(), espn_wbb_game_situation(), espn_wbb_game_team_leaders(), espn_wbb_game_team_linescores(), espn_wbb_game_team_records(), espn_wbb_game_team_roster(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_score(), espn_wbb_game_team_statistics(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_awards(), espn_wbb_player_box(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog(), espn_wbb_player_eventlog_v2(), espn_wbb_player_gamelog(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_splits(), espn_wbb_player_statisticslog(), espn_wbb_player_stats(), espn_wbb_player_stats_v3(), espn_wbb_position(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), 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_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), 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()

Examples

espn_wbb_franchises()

Get ESPN women's college basketball game data (play-by-play, team and player box)

Description

Get ESPN women's college basketball game data (play-by-play, team and player box)

Usage

espn_wbb_game_all(game_id)

Arguments

game_id

Game ID

Value

A named list of dataframes: Plays, Team, Player

Plays

col_name types description
id character Unique play identifcation number
sequence_number character Sequence number representing a shot-possession (V3 PBP).
text character Text description of the play / record.
away_score integer Away team score at the time of the play.
home_score integer Home team score at the time of the play.
scoring_play logical TRUE if the play resulted in points scored.
score_value integer Point value of the play (2 / 3 / 1).
wallclock character Wallclock.
shooting_play logical TRUE if the play was a shooting attempt.
type_id integer Type identifier (numeric).
type_text character Display text for the type field.
period_number integer Numeric period (1-4 for quarters; 5+ for OT).
period_display_value character Period display label (e.g. '1st Quarter', 'OT').
clock_display_value character Game clock display string (e.g. '8:32').
team_id integer Unique team identifier.
coordinate_x_raw numeric X coordinate as returned by the API before any adjustment.
coordinate_y_raw numeric Y coordinate as returned by the API before any adjustment.
coordinate_x numeric X coordinate on the court (half-court layout).
coordinate_y numeric Y coordinate on the court (half-court layout).
play_id character Unique play identifier within a game.
athlete_id_1 integer Primary athlete identifier (e.g. shooter).
athlete_id_2 integer Secondary athlete identifier (e.g. assister / fouler).
home_team_id integer Unique identifier for the home team.
home_team_mascot character Home team mascot.
home_team_name character Home team name.
home_team_abbrev character Home team three-letter abbreviation.
home_team_logo character Home team logo URL.
home_team_logo_dark character Home team logo URL for dark backgrounds.
home_team_full_name character Full home team name (e.g. 'Las Vegas Aces').
home_team_color character Home team primary color (hex).
home_team_alternate_color character Home team alternate color (hex).
home_team_score integer Home team's score.
home_team_winner logical TRUE if the home team won this game.
home_team_record character Home team's win-loss record.
away_team_id integer Unique identifier for the away team.
away_team_mascot character Away team mascot.
away_team_name character Away team name.
away_team_abbrev character Away team three-letter abbreviation.
away_team_logo character Away team logo URL.
away_team_logo_dark character Away team logo URL for dark backgrounds.
away_team_full_name character Full away team name (e.g. 'Las Vegas Aces').
away_team_color character Away team primary color (hex).
away_team_alternate_color character Away team alternate color (hex).
away_team_score integer Away team's score.
away_team_winner logical TRUE if the away team won this game.
away_team_record character Away team's win-loss record.
game_id integer Unique game identifier.
season integer Season identifier (4-digit year or 'YYYY-YY' string).
season_type integer Season type (1=pre-season, 2=regular season, 3=postseason, 4=off-season for ESPN; or string label for WNBA Stats).
game_date Date Game date (YYYY-MM-DD).
game_date_time POSIXct Game start date/time (ISO 8601).

Team

col_name types description
game_id integer Unique game identifier.
season integer Season identifier (4-digit year or 'YYYY-YY' string).
season_type integer Season type (1=pre-season, 2=regular season, 3=postseason, 4=off-season for ESPN; or string label for WNBA Stats).
game_date Date Game date (YYYY-MM-DD).
game_date_time POSIXct Game start date/time (ISO 8601).
team_id integer Unique team identifier.
team_uid character ESPN universal team identifier (UID format 's:40~l:...~t:...').
team_slug character URL-safe team identifier (e.g. 'lasvegas-aces' / 'aces').
team_location character Team city or location string.
team_name character Full team display name (e.g. 'Las Vegas Aces').
team_abbreviation character Short team abbreviation (e.g. 'LAS').
team_display_name character Full team display name.
team_short_display_name character Short team display name (e.g. 'Aces').
team_color character Team primary color (hex without leading '#').
team_alternate_color character Team alternate color (hex without leading '#').
team_logo character Team logo image URL.
team_home_away character Team home away.
team_score integer Team's score / final score.
team_winner logical TRUE if the team won this game.
assists integer Total assists.
blocks integer Total blocks.
defensive_rebounds integer Defensive rebounds.
field_goal_pct numeric Field goal percentage (0-1).
field_goals_made integer Field goals made (2-pt + 3-pt).
field_goals_attempted integer Field goal attempts (2-pt + 3-pt).
flagrant_fouls integer Total flagrant fouls.
fouls integer Personal fouls.
free_throw_pct numeric Free throw percentage (0-1).
free_throws_made integer Free throws made.
free_throws_attempted integer Free throw attempts.
largest_lead character Largest lead during the game.
offensive_rebounds integer Offensive rebounds.
steals integer Total steals.
team_turnovers integer Team turnovers (turnovers credited to the team rather than a player).
technical_fouls integer Total technical fouls.
three_point_field_goal_pct numeric Three-point field goal percentage (0-1).
three_point_field_goals_made integer Three-point field goals made.
three_point_field_goals_attempted integer Three-point field goal attempts.
total_rebounds integer Total rebounds.
total_technical_fouls integer Total technical fouls (player + team).
total_turnovers integer Total turnovers (player + team).
turnovers integer Total turnovers.
opponent_team_id integer Unique identifier for the opponent team.
opponent_team_uid character Opponent team uid.
opponent_team_slug character Opponent team slug.
opponent_team_location character Opponent team city / location.
opponent_team_name character Opponent team display name.
opponent_team_abbreviation character Opponent team abbreviation.
opponent_team_display_name character Opponent team full display name.
opponent_team_short_display_name character Opponent team short display name.
opponent_team_color character Opponent team primary color (hex).
opponent_team_alternate_color character Opponent team alternate color (hex).
opponent_team_logo character Opponent team logo URL.
opponent_team_score integer Opponent team's score.

Player

col_name types description
game_id integer Unique game identifier.
season integer Season identifier (4-digit year or 'YYYY-YY' string).
season_type integer Season type (1=pre-season, 2=regular season, 3=postseason, 4=off-season for ESPN; or string label for WNBA Stats).
game_date Date Game date (YYYY-MM-DD).
game_date_time POSIXct Game start date/time (ISO 8601).
athlete_id integer Unique athlete identifier (ESPN).
athlete_display_name character Athlete display name (full).
team_id integer Unique team identifier.
team_name character Full team display name (e.g. 'Las Vegas Aces').
team_location character Team city or location string.
team_short_display_name character Short team display name (e.g. 'Aces').
minutes numeric Minutes played, formatted MM:SS (V3 PT-duration parsed) or decimal minutes (V2).
field_goals_made integer Field goals made (2-pt + 3-pt).
field_goals_attempted integer Field goal attempts (2-pt + 3-pt).
three_point_field_goals_made integer Three-point field goals made.
three_point_field_goals_attempted integer Three-point field goal attempts.
free_throws_made integer Free throws made.
free_throws_attempted integer Free throw attempts.
offensive_rebounds integer Offensive rebounds.
defensive_rebounds integer Defensive rebounds.
rebounds integer Total rebounds.
assists integer Total assists.
steals integer Total steals.
blocks integer Total blocks.
turnovers integer Total turnovers.
fouls integer Personal fouls.
points integer Points scored.
starter logical TRUE if the player was in the starting lineup; FALSE otherwise.
ejected logical TRUE if the player was ejected from the game.
did_not_play logical TRUE if the player did not appear in the game.
active logical TRUE if the row represents an active record (player / team / season).
athlete_jersey character Athlete jersey number.
athlete_short_name character Athlete short display name.
athlete_headshot_href character Athlete headshot image URL.
athlete_position_name character Athlete position ('Guard', 'Forward', 'Center').
athlete_position_abbreviation character Athlete position abbreviation (G / F / C).
team_display_name character Full team display name.
team_uid character ESPN universal team identifier (UID format 's:40~l:...~t:...').
team_slug character URL-safe team identifier (e.g. 'lasvegas-aces' / 'aces').
team_logo character Team logo image URL.
team_abbreviation character Short team abbreviation (e.g. 'LAS').
team_color character Team primary color (hex without leading '#').
team_alternate_color character Team alternate color (hex without leading '#').
home_away character Game venue label ('home' or 'away').
team_winner logical TRUE if the team won this game.
team_score integer Team's score / final score.
opponent_team_id integer Unique identifier for the opponent team.
opponent_team_name character Opponent team display name.
opponent_team_location character Opponent team city / location.
opponent_team_display_name character Opponent team full display name.
opponent_team_abbreviation character Opponent team abbreviation.
opponent_team_logo character Opponent team logo URL.
opponent_team_color character Opponent team primary color (hex).
opponent_team_alternate_color character Opponent team alternate color (hex).
opponent_team_score integer Opponent team's score.

Author(s)

Saiem Gilani

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_broadcasts(), espn_wbb_game_odds(), espn_wbb_game_official_detail(), espn_wbb_game_officials(), espn_wbb_game_play(), espn_wbb_game_play_personnel(), espn_wbb_game_player_box(), espn_wbb_game_powerindex(), espn_wbb_game_predictor(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_rosters(), espn_wbb_game_situation(), espn_wbb_game_team_leaders(), espn_wbb_game_team_linescores(), espn_wbb_game_team_records(), espn_wbb_game_team_roster(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_score(), espn_wbb_game_team_statistics(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_awards(), espn_wbb_player_box(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog(), espn_wbb_player_eventlog_v2(), espn_wbb_player_gamelog(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_splits(), espn_wbb_player_statisticslog(), espn_wbb_player_stats(), espn_wbb_player_stats_v3(), espn_wbb_position(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), 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_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), 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()

Examples

try(espn_wbb_game_all(game_id = 401276115))

Get ESPN Women's College Basketball Event Broadcasts

Description

Get ESPN Women's College Basketball Event Broadcasts

Get ESPN Women's College Basketball Event Broadcasts

Usage

espn_wbb_game_broadcasts(event_id, ...)

Arguments

event_id

ESPN event/game identifier (character or numeric).

...

Additional arguments; currently unused.

Value

A tibble with one row per broadcast outlet for the game.

col_name types description
event_id character Unique event / game identifier (ESPN).
broadcast_id character Unique identifier for broadcast.
type_id character Type identifier (numeric).
type_short_name character Type short name.
type_long_name character Type long name.
market_id character Unique identifier for market.
market_type character Market type.
names character Names.
lang character Lang.
region character Region label.

Author(s)

Saiem Gilani

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_officials(), espn_wbb_game_play(), espn_wbb_game_play_personnel(), espn_wbb_game_player_box(), espn_wbb_game_powerindex(), espn_wbb_game_predictor(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_rosters(), espn_wbb_game_situation(), espn_wbb_game_team_leaders(), espn_wbb_game_team_linescores(), espn_wbb_game_team_records(), espn_wbb_game_team_roster(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_score(), espn_wbb_game_team_statistics(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_awards(), espn_wbb_player_box(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog(), espn_wbb_player_eventlog_v2(), espn_wbb_player_gamelog(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_splits(), espn_wbb_player_statisticslog(), espn_wbb_player_stats(), espn_wbb_player_stats_v3(), espn_wbb_position(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), 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_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), 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()

Examples

espn_wbb_game_broadcasts(event_id = "401276115")

Get ESPN Women's College Basketball Event Odds

Description

Get ESPN Women's College Basketball Event Odds

Get ESPN Women's College Basketball Event Odds

Usage

espn_wbb_game_odds(event_id, ...)

Arguments

event_id

ESPN event/game identifier (character or numeric).

...

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

Value

A tibble with one row per odds provider (typically empty for WBB because ESPN does not carry NCAA basketball betting lines).

col_name types description
event_id character Unique event / game identifier (ESPN).
provider_id character Unique identifier for provider.
provider_name character Provider name.
details character Details.
over_under numeric Over under.
spread numeric Spread.
home_money_line integer Home team's money line.
away_money_line integer Away team's money line.
home_team_odds_open numeric Home team's team odds open.
home_team_odds_close numeric Home team's team odds close.
away_team_odds_open numeric Away team's team odds open.
away_team_odds_close numeric Away team's team odds close.

Author(s)

Saiem Gilani

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_broadcasts(), espn_wbb_game_official_detail(), espn_wbb_game_officials(), espn_wbb_game_play(), espn_wbb_game_play_personnel(), espn_wbb_game_player_box(), espn_wbb_game_powerindex(), espn_wbb_game_predictor(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_rosters(), espn_wbb_game_situation(), espn_wbb_game_team_leaders(), espn_wbb_game_team_linescores(), espn_wbb_game_team_records(), espn_wbb_game_team_roster(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_score(), espn_wbb_game_team_statistics(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_awards(), espn_wbb_player_box(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog(), espn_wbb_player_eventlog_v2(), espn_wbb_player_gamelog(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_splits(), espn_wbb_player_statisticslog(), espn_wbb_player_stats(), espn_wbb_player_stats_v3(), espn_wbb_position(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), 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_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), 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()

Examples

espn_wbb_game_odds(event_id = "401276115")

Get ESPN WBB Event Official Detail (Single Official)

Description

Returns a single-row tibble for one referee assigned to one WBB event, with their name, position (Referee / Crew Chief / Umpire), and crew order. Pair with espn_wbb_game_officials() to enumerate the crew.

Usage

espn_wbb_game_official_detail(event_id, order, ...)

Arguments

event_id

ESPN event identifier.

order

Crew order index (1 = first official). Pair with the order column from event_officials().

...

Additional arguments; currently unused.

Value

A single-row tibble.

Author(s)

Saiem Gilani

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_broadcasts(), espn_wbb_game_odds(), espn_wbb_game_officials(), espn_wbb_game_play(), espn_wbb_game_play_personnel(), espn_wbb_game_player_box(), espn_wbb_game_powerindex(), espn_wbb_game_predictor(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_rosters(), espn_wbb_game_situation(), espn_wbb_game_team_leaders(), espn_wbb_game_team_linescores(), espn_wbb_game_team_records(), espn_wbb_game_team_roster(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_score(), espn_wbb_game_team_statistics(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_awards(), espn_wbb_player_box(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog(), espn_wbb_player_eventlog_v2(), espn_wbb_player_gamelog(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_splits(), espn_wbb_player_statisticslog(), espn_wbb_player_stats(), espn_wbb_player_stats_v3(), espn_wbb_position(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), 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_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), 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()

Examples

espn_wbb_game_official_detail(event_id = 401276115, order = 1)

Get ESPN Women's College Basketball Event Officials

Description

Get ESPN Women's College Basketball Event Officials

Get ESPN Women's College Basketball Event Officials

Usage

espn_wbb_game_officials(event_id, ...)

Arguments

event_id

ESPN event/game identifier (character or numeric).

...

Additional arguments; currently unused.

Value

A tibble with one row per official assigned to the game.

col_name types description
event_id character Unique event / game identifier (ESPN).
official_id character Unique official / referee identifier.
full_name character Player's full name.
display_name character Display name.
position_id character Unique position identifier.
position_name character Listed roster position ('Guard', 'Forward', 'Center').
position_type character Position type.
order integer Display order within the result set.

Author(s)

Saiem Gilani

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_broadcasts(), 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_powerindex(), espn_wbb_game_predictor(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_rosters(), espn_wbb_game_situation(), espn_wbb_game_team_leaders(), espn_wbb_game_team_linescores(), espn_wbb_game_team_records(), espn_wbb_game_team_roster(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_score(), espn_wbb_game_team_statistics(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_awards(), espn_wbb_player_box(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog(), espn_wbb_player_eventlog_v2(), espn_wbb_player_gamelog(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_splits(), espn_wbb_player_statisticslog(), espn_wbb_player_stats(), espn_wbb_player_stats_v3(), espn_wbb_position(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), 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_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), 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()

Examples

espn_wbb_game_officials(event_id = "401276115")

Get ESPN WBB Event Play Detail (Single Play)

Description

Returns the rich detail block for a single WBB play: sequence, period, clock, text, scoring/shooting flags, current home/away score, team ⁠$ref⁠, and shot coordinates if applicable. Complements the bulk espn_wbb_pbp() output by exposing the canonical core-v2 play record.

Usage

espn_wbb_game_play(event_id, play_id, ...)

Arguments

event_id

ESPN event identifier.

play_id

ESPN play identifier (visible in pbp() output as play_id or extractable from ⁠plays[].$ref⁠).

...

Additional arguments; currently unused.

Value

A single-row tibble.

Author(s)

Saiem Gilani

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_broadcasts(), espn_wbb_game_odds(), espn_wbb_game_official_detail(), espn_wbb_game_officials(), espn_wbb_game_play_personnel(), espn_wbb_game_player_box(), espn_wbb_game_powerindex(), espn_wbb_game_predictor(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_rosters(), espn_wbb_game_situation(), espn_wbb_game_team_leaders(), espn_wbb_game_team_linescores(), espn_wbb_game_team_records(), espn_wbb_game_team_roster(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_score(), espn_wbb_game_team_statistics(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_awards(), espn_wbb_player_box(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog(), espn_wbb_player_eventlog_v2(), espn_wbb_player_gamelog(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_splits(), espn_wbb_player_statisticslog(), espn_wbb_player_stats(), espn_wbb_player_stats_v3(), espn_wbb_position(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), 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_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), 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()

Examples

espn_wbb_game_play(event_id = 401276115, play_id = 401276115101899901)

Get ESPN WBB Event Play Personnel (On-Court Lineup at Play)

Description

Returns the players on court at a specific WBB play in long format (one row per athlete entry across both competitors). Foundation for lineup analysis. ESPN coverage is sparse — many plays return zero rows; the wrapper returns a typed empty tibble in that case.

Usage

espn_wbb_game_play_personnel(event_id, play_id, ...)

Arguments

event_id

ESPN event identifier.

play_id

ESPN play identifier.

...

Additional arguments; currently unused.

Value

A long tibble with one row per on-court athlete.

Author(s)

Saiem Gilani

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_broadcasts(), espn_wbb_game_odds(), espn_wbb_game_official_detail(), espn_wbb_game_officials(), espn_wbb_game_play(), espn_wbb_game_player_box(), espn_wbb_game_powerindex(), espn_wbb_game_predictor(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_rosters(), espn_wbb_game_situation(), espn_wbb_game_team_leaders(), espn_wbb_game_team_linescores(), espn_wbb_game_team_records(), espn_wbb_game_team_roster(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_score(), espn_wbb_game_team_statistics(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_awards(), espn_wbb_player_box(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog(), espn_wbb_player_eventlog_v2(), espn_wbb_player_gamelog(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_splits(), espn_wbb_player_statisticslog(), espn_wbb_player_stats(), espn_wbb_player_stats_v3(), espn_wbb_position(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), 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_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), 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()

Examples

espn_wbb_game_play_personnel(event_id = 401276115, play_id = 401276115101899901)

Get ESPN WBB Event Player Box Score (Long Format)

Description

Returns the long-format per-game box score for a single athlete in one WBB event. One row per (category x stat). Same shape as espn_wbb_game_team_statistics() but scoped to a single athlete-in-event instead of the full team. stat_type defaults to 0 (regular-season aggregate as ESPN tags it for finished events).

Usage

espn_wbb_game_player_box(event_id, team_id, athlete_id, stat_type = 0L, ...)

Arguments

event_id

ESPN event identifier.

team_id

ESPN team identifier (the competitor the athlete played for).

athlete_id

ESPN athlete identifier.

stat_type

Integer stat-type segment. Defaults to 0 (the only type commonly populated for finished events).

...

Additional arguments; currently unused.

Value

A long tibble with one row per (category x stat).

Author(s)

Saiem Gilani

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_broadcasts(), espn_wbb_game_odds(), espn_wbb_game_official_detail(), espn_wbb_game_officials(), espn_wbb_game_play(), espn_wbb_game_play_personnel(), espn_wbb_game_powerindex(), espn_wbb_game_predictor(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_rosters(), espn_wbb_game_situation(), espn_wbb_game_team_leaders(), espn_wbb_game_team_linescores(), espn_wbb_game_team_records(), espn_wbb_game_team_roster(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_score(), espn_wbb_game_team_statistics(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_awards(), espn_wbb_player_box(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog(), espn_wbb_player_eventlog_v2(), espn_wbb_player_gamelog(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_splits(), espn_wbb_player_statisticslog(), espn_wbb_player_stats(), espn_wbb_player_stats_v3(), espn_wbb_position(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), 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_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), 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()

Examples

espn_wbb_game_player_box(event_id = 401276115, team_id = 52,
                               athlete_id = 4433404)

Get ESPN WBB Event Power Index Index

Description

Returns the per-team power-index ⁠$ref⁠ URLs for one WBB event. Coverage is sparse — many events return zero items.

Usage

espn_wbb_game_powerindex(event_id, ...)

Arguments

event_id

ESPN event identifier.

...

Additional arguments; currently unused.

Details

Get ESPN WBB Event Power Index Index

Value

A tibble with one row per team-game power-index entry.

Author(s)

Saiem Gilani

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_broadcasts(), espn_wbb_game_odds(), espn_wbb_game_official_detail(), espn_wbb_game_officials(), espn_wbb_game_play(), espn_wbb_game_play_personnel(), espn_wbb_game_player_box(), espn_wbb_game_predictor(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_rosters(), espn_wbb_game_situation(), espn_wbb_game_team_leaders(), espn_wbb_game_team_linescores(), espn_wbb_game_team_records(), espn_wbb_game_team_roster(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_score(), espn_wbb_game_team_statistics(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_awards(), espn_wbb_player_box(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog(), espn_wbb_player_eventlog_v2(), espn_wbb_player_gamelog(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_splits(), espn_wbb_player_statisticslog(), espn_wbb_player_stats(), espn_wbb_player_stats_v3(), espn_wbb_position(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), 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_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), 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()

Examples

espn_wbb_game_powerindex(event_id = 401276115)

Get ESPN WBB Event Predictor (Pre-game)

Description

Returns pre-game predictor statistics for one WBB event in long format: one row per (team × statistic). Typical stats include matchup quality, predicted score, win probability, and team strength metrics. Returns empty for events without predictor data (often the case for already-played games).

Usage

espn_wbb_game_predictor(event_id, ...)

Arguments

event_id

ESPN event identifier.

...

Additional arguments; currently unused.

Details

Get ESPN WBB Event Predictor (Pre-game)

Value

A long tibble with rows for both home and away teams.

Author(s)

Saiem Gilani

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_broadcasts(), espn_wbb_game_odds(), espn_wbb_game_official_detail(), espn_wbb_game_officials(), espn_wbb_game_play(), espn_wbb_game_play_personnel(), espn_wbb_game_player_box(), espn_wbb_game_powerindex(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_rosters(), espn_wbb_game_situation(), espn_wbb_game_team_leaders(), espn_wbb_game_team_linescores(), espn_wbb_game_team_records(), espn_wbb_game_team_roster(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_score(), espn_wbb_game_team_statistics(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_awards(), espn_wbb_player_box(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog(), espn_wbb_player_eventlog_v2(), espn_wbb_player_gamelog(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_splits(), espn_wbb_player_statisticslog(), espn_wbb_player_stats(), espn_wbb_player_stats_v3(), espn_wbb_position(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), 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_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), 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()

Examples

espn_wbb_game_predictor(event_id = 401276115)

Get ESPN Women's College Basketball Event Win Probabilities

Description

Get ESPN Women's College Basketball Event Win Probabilities

Get ESPN Women's College Basketball Event Win Probabilities

Usage

espn_wbb_game_probabilities(event_id, limit = 200, ...)

Arguments

event_id

ESPN event/game identifier (character or numeric).

limit

integer. Maximum number of probability rows to return. Defaults to 200. Pagination is handled internally.

...

Additional arguments; currently unused.

Value

A tibble with one row per play-level win-probability entry.

col_name types description
event_id character Unique event / game identifier (ESPN).
sequence_number character Sequence number representing a shot-possession (V3 PBP).
play_id character Unique play identifier within a game.
period integer Period of the game (1-4 quarters; 5+ for OT).
clock character Game clock value.
home_win_percentage numeric Home win percentage (0-1 decimal).
away_win_percentage numeric Away win percentage (0-1 decimal).
tie_percentage numeric Tie percentage (0-1 decimal).
secs_to_end_of_period numeric Secs to end of period.
secs_to_end_of_game numeric Secs to end of game.

Author(s)

Saiem Gilani

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_broadcasts(), espn_wbb_game_odds(), espn_wbb_game_official_detail(), espn_wbb_game_officials(), espn_wbb_game_play(), espn_wbb_game_play_personnel(), espn_wbb_game_player_box(), espn_wbb_game_powerindex(), espn_wbb_game_predictor(), espn_wbb_game_propbets(), espn_wbb_game_rosters(), espn_wbb_game_situation(), espn_wbb_game_team_leaders(), espn_wbb_game_team_linescores(), espn_wbb_game_team_records(), espn_wbb_game_team_roster(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_score(), espn_wbb_game_team_statistics(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_awards(), espn_wbb_player_box(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog(), espn_wbb_player_eventlog_v2(), espn_wbb_player_gamelog(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_splits(), espn_wbb_player_statisticslog(), espn_wbb_player_stats(), espn_wbb_player_stats_v3(), espn_wbb_position(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), 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_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), 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()

Examples

espn_wbb_game_probabilities(event_id = "401276115", limit = 50)

Get ESPN WBB Event Prop Bets (Long Format)

Description

Returns prop-bet markets for one WBB event + provider in long format: one row per (athlete × prop type). Each row has american / decimal / fraction odds plus the current target (e.g. over/under line). Hits the core-v2 competitions/{id}/odds/{provider_id}/propBets endpoint and auto-paginates.

Usage

espn_wbb_game_propbets(event_id, provider_id, ...)

Arguments

event_id

ESPN event identifier.

provider_id

Sportsbook provider id (e.g. 58 = ESPN BET, 100 = Caesars). Look up via espn_wbb_game_odds().

...

Additional arguments; currently unused.

Details

Get ESPN WBB Event Prop Bets (Long Format)

Value

A long tibble with one row per (athlete × prop type).

Author(s)

Saiem Gilani

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_broadcasts(), espn_wbb_game_odds(), espn_wbb_game_official_detail(), espn_wbb_game_officials(), espn_wbb_game_play(), espn_wbb_game_play_personnel(), espn_wbb_game_player_box(), espn_wbb_game_powerindex(), espn_wbb_game_predictor(), espn_wbb_game_probabilities(), espn_wbb_game_rosters(), espn_wbb_game_situation(), espn_wbb_game_team_leaders(), espn_wbb_game_team_linescores(), espn_wbb_game_team_records(), espn_wbb_game_team_roster(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_score(), espn_wbb_game_team_statistics(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_awards(), espn_wbb_player_box(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog(), espn_wbb_player_eventlog_v2(), espn_wbb_player_gamelog(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_splits(), espn_wbb_player_statisticslog(), espn_wbb_player_stats(), espn_wbb_player_stats_v3(), espn_wbb_position(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), 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_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), 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()

Examples

espn_wbb_game_propbets(event_id = 401276115, provider_id = 58)

Get ESPN women's college basketball game rosters

Description

Get ESPN women's college basketball game rosters

Usage

espn_wbb_game_rosters(game_id)

Arguments

game_id

Game ID

Value

A game rosters data frame

col_name types description
athlete_id integer Unique athlete identifier (ESPN).
athlete_uid character ESPN athlete UID (universal identifier).
athlete_guid character ESPN athlete GUID.
athlete_type character Athlete type / class.
sdr integer Sdr.
first_name character Player's first name.
last_name character Player's last name.
full_name character Player's full name.
athlete_display_name character Athlete display name (full).
short_name character Short display name.
height integer Player height (string e.g. '6-2' or inches).
display_height character Player height in display format (e.g. '6-2').
birth_place_city character Birth place city.
birth_place_state character Birth place state.
birth_place_country character Birth place country.
slug character URL-safe identifier.
headshot_href character Headshot image URL.
headshot_alt character Alternative-text label for the headshot.
jersey character Jersey number worn by the player.
position_id integer Unique position identifier.
position_name character Listed roster position ('Guard', 'Forward', 'Center').
position_display_name character Position display name.
position_abbreviation character Position abbreviation ('G' / 'F' / 'C').
position_leaf logical Position leaf.
linked logical TRUE if the record is linked to a related entity.
experience_years integer Experience years.
experience_display_value character Experience display value.
experience_abbreviation character Experience abbreviation.
active logical TRUE if the row represents an active record (player / team / season).
status_id integer Status identifier.
status_name character Status label.
status_type character Status type.
status_abbreviation character Status abbreviation.
starter logical TRUE if the player was in the starting lineup; FALSE otherwise.
valid logical Valid.
did_not_play logical TRUE if the player did not appear in the game.
display_name character Display name.
ejected logical TRUE if the player was ejected from the game.
team_id integer Unique team identifier.
team_guid character ESPN team GUID.
team_uid character ESPN universal team identifier (UID format 's:40~l:...~t:...').
team_sdr integer ESPN team SDR identifier.
team_slug character URL-safe team identifier (e.g. 'lasvegas-aces' / 'aces').
team_location character Team city or location string.
team_name character Full team display name (e.g. 'Las Vegas Aces').
team_nickname character Team nickname.
team_abbreviation character Short team abbreviation (e.g. 'LAS').
team_display_name character Full team display name.
team_short_display_name character Short team display name (e.g. 'Aces').
team_color character Team primary color (hex without leading '#').
team_alternate_color character Team alternate color (hex without leading '#').
is_active logical Is active.
is_all_star logical Is all star.
logo_href character Team or league logo URL.
logo_dark_href character Logo URL for dark backgrounds.
game_id integer Unique game identifier.
order integer Display order within the result set.
home_away character Game venue label ('home' or 'away').
winner logical Winner.
roster_href character URL for roster.
hand_type character Hand type.
hand_abbreviation character Hand abbreviation.
hand_display_value character Hand display value.
age integer Player age (in years).
date_of_birth character Date of birth (YYYY-MM-DD).
weight integer Player weight in pounds.
display_weight character Player weight in display format (e.g. '180 lbs').

Author(s)

Saiem Gilani

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_broadcasts(), espn_wbb_game_odds(), espn_wbb_game_official_detail(), espn_wbb_game_officials(), espn_wbb_game_play(), espn_wbb_game_play_personnel(), espn_wbb_game_player_box(), espn_wbb_game_powerindex(), espn_wbb_game_predictor(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_situation(), espn_wbb_game_team_leaders(), espn_wbb_game_team_linescores(), espn_wbb_game_team_records(), espn_wbb_game_team_roster(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_score(), espn_wbb_game_team_statistics(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_awards(), espn_wbb_player_box(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog(), espn_wbb_player_eventlog_v2(), espn_wbb_player_gamelog(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_splits(), espn_wbb_player_statisticslog(), espn_wbb_player_stats(), espn_wbb_player_stats_v3(), espn_wbb_position(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), 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_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), 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()

Examples

try(espn_wbb_game_rosters(game_id = 401276115))

Get ESPN WBB Event Situation (Live)

Description

Returns the live game situation for one WBB event: timeouts remaining, team fouls, fouls to give, bonus state, and a ⁠$ref⁠ to the last play. During a live game this reflects current state; after the game ends the values are frozen.

Usage

espn_wbb_game_situation(event_id, ...)

Arguments

event_id

ESPN event identifier.

...

Additional arguments; currently unused.

Value

A single-row tibble with timeouts + fouls for both teams.

Author(s)

Saiem Gilani

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_broadcasts(), espn_wbb_game_odds(), espn_wbb_game_official_detail(), espn_wbb_game_officials(), espn_wbb_game_play(), espn_wbb_game_play_personnel(), espn_wbb_game_player_box(), espn_wbb_game_powerindex(), espn_wbb_game_predictor(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_rosters(), espn_wbb_game_team_leaders(), espn_wbb_game_team_linescores(), espn_wbb_game_team_records(), espn_wbb_game_team_roster(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_score(), espn_wbb_game_team_statistics(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_awards(), espn_wbb_player_box(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog(), espn_wbb_player_eventlog_v2(), espn_wbb_player_gamelog(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_splits(), espn_wbb_player_statisticslog(), espn_wbb_player_stats(), espn_wbb_player_stats_v3(), espn_wbb_position(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), 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_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), 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()

Examples

espn_wbb_game_situation(event_id = 401276115)

Get ESPN WBB Event Competitor Leaders (Top Performers)

Description

Returns the per-team statistical leaders for one WBB event in long format: one row per (category x athlete rank). Categories typically include points, rebounds, assists, and rating.

Usage

espn_wbb_game_team_leaders(event_id, team_id, ...)

Arguments

event_id

ESPN event identifier.

team_id

ESPN team identifier.

...

Additional arguments; currently unused.

Value

A long tibble with one row per (category x rank).

Author(s)

Saiem Gilani

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_broadcasts(), espn_wbb_game_odds(), espn_wbb_game_official_detail(), espn_wbb_game_officials(), espn_wbb_game_play(), espn_wbb_game_play_personnel(), espn_wbb_game_player_box(), espn_wbb_game_powerindex(), espn_wbb_game_predictor(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_rosters(), espn_wbb_game_situation(), espn_wbb_game_team_linescores(), espn_wbb_game_team_records(), espn_wbb_game_team_roster(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_score(), espn_wbb_game_team_statistics(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_awards(), espn_wbb_player_box(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog(), espn_wbb_player_eventlog_v2(), espn_wbb_player_gamelog(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_splits(), espn_wbb_player_statisticslog(), espn_wbb_player_stats(), espn_wbb_player_stats_v3(), espn_wbb_position(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), 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_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), 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()

Examples

espn_wbb_game_team_leaders(event_id = 401276115, team_id = 52)

Get ESPN WBB Event Competitor Linescores (Per-Quarter)

Description

Returns the per-quarter scoring breakdown for one team in one NBA event. One row per period (regulation quarters + any overtime periods).

Usage

espn_wbb_game_team_linescores(event_id, team_id, ...)

Arguments

event_id

ESPN event identifier.

team_id

ESPN team identifier (the competitor whose linescore to fetch).

...

Additional arguments; currently unused.

Value

A tibble with one row per period.

Author(s)

Saiem Gilani

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_broadcasts(), espn_wbb_game_odds(), espn_wbb_game_official_detail(), espn_wbb_game_officials(), espn_wbb_game_play(), espn_wbb_game_play_personnel(), espn_wbb_game_player_box(), espn_wbb_game_powerindex(), espn_wbb_game_predictor(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_rosters(), espn_wbb_game_situation(), espn_wbb_game_team_leaders(), espn_wbb_game_team_records(), espn_wbb_game_team_roster(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_score(), espn_wbb_game_team_statistics(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_awards(), espn_wbb_player_box(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog(), espn_wbb_player_eventlog_v2(), espn_wbb_player_gamelog(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_splits(), espn_wbb_player_statisticslog(), espn_wbb_player_stats(), espn_wbb_player_stats_v3(), espn_wbb_position(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), 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_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), 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()

Examples

espn_wbb_game_team_linescores(event_id = 401276115, team_id = 52)

Get ESPN WBB Event Competitor Records (At-Game Breakdown)

Description

Returns team records as of the given WBB event: overall, home, away, conference, and division breakdowns where available. One row per record type.

Usage

espn_wbb_game_team_records(event_id, team_id, ...)

Arguments

event_id

ESPN event identifier.

team_id

ESPN team identifier.

...

Additional arguments; currently unused.

Value

A tibble with one row per record type.

Author(s)

Saiem Gilani

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_broadcasts(), espn_wbb_game_odds(), espn_wbb_game_official_detail(), espn_wbb_game_officials(), espn_wbb_game_play(), espn_wbb_game_play_personnel(), espn_wbb_game_player_box(), espn_wbb_game_powerindex(), espn_wbb_game_predictor(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_rosters(), espn_wbb_game_situation(), espn_wbb_game_team_leaders(), espn_wbb_game_team_linescores(), espn_wbb_game_team_roster(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_score(), espn_wbb_game_team_statistics(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_awards(), espn_wbb_player_box(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog(), espn_wbb_player_eventlog_v2(), espn_wbb_player_gamelog(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_splits(), espn_wbb_player_statisticslog(), espn_wbb_player_stats(), espn_wbb_player_stats_v3(), espn_wbb_position(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), 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_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), 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()

Examples

espn_wbb_game_team_records(event_id = 401276115, team_id = 52)

Get ESPN WBB Event Competitor Roster (Game-Day)

Description

Returns the game-day roster index for one team in one WBB event. Each row carries the athlete id and the core-v2 ⁠$ref⁠ URL — use the ref to dereference athlete-game splits or biographical data.

Usage

espn_wbb_game_team_roster(event_id, team_id, ...)

Arguments

event_id

ESPN event identifier.

team_id

ESPN team identifier.

...

Additional arguments; currently unused.

Value

A tibble with one row per active athlete.

Author(s)

Saiem Gilani

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_broadcasts(), espn_wbb_game_odds(), espn_wbb_game_official_detail(), espn_wbb_game_officials(), espn_wbb_game_play(), espn_wbb_game_play_personnel(), espn_wbb_game_player_box(), espn_wbb_game_powerindex(), espn_wbb_game_predictor(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_rosters(), espn_wbb_game_situation(), espn_wbb_game_team_leaders(), espn_wbb_game_team_linescores(), espn_wbb_game_team_records(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_score(), espn_wbb_game_team_statistics(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_awards(), espn_wbb_player_box(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog(), espn_wbb_player_eventlog_v2(), espn_wbb_player_gamelog(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_splits(), espn_wbb_player_statisticslog(), espn_wbb_player_stats(), espn_wbb_player_stats_v3(), espn_wbb_position(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), 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_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), 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()

Examples

espn_wbb_game_team_roster(event_id = 401276115, team_id = 52)

Get ESPN WBB Event Competitor Roster Entry (Per-Athlete Game-Day Row)

Description

Returns a single-row tibble describing one athlete's game-day roster entry for one WBB event. Carries the starter flag, didNotPlay flag with reason, ejection flag, and the substitution slot if the athlete came in for another player. Pair with espn_wbb_game_team_roster() to enumerate the roster.

Usage

espn_wbb_game_team_roster_entry(event_id, team_id, athlete_id, ...)

Arguments

event_id

ESPN event identifier.

team_id

ESPN team identifier.

athlete_id

ESPN athlete identifier.

...

Additional arguments; currently unused.

Value

A single-row tibble.

Author(s)

Saiem Gilani

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_broadcasts(), espn_wbb_game_odds(), espn_wbb_game_official_detail(), espn_wbb_game_officials(), espn_wbb_game_play(), espn_wbb_game_play_personnel(), espn_wbb_game_player_box(), espn_wbb_game_powerindex(), espn_wbb_game_predictor(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_rosters(), espn_wbb_game_situation(), espn_wbb_game_team_leaders(), espn_wbb_game_team_linescores(), espn_wbb_game_team_records(), espn_wbb_game_team_roster(), espn_wbb_game_team_score(), espn_wbb_game_team_statistics(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_awards(), espn_wbb_player_box(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog(), espn_wbb_player_eventlog_v2(), espn_wbb_player_gamelog(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_splits(), espn_wbb_player_statisticslog(), espn_wbb_player_stats(), espn_wbb_player_stats_v3(), espn_wbb_position(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), 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_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), 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()

Examples

espn_wbb_game_team_roster_entry(event_id = 401276115,
                                            team_id = 2509,
                                            athlete_id = 4433404)

Get ESPN WBB Event Competitor Score (Single Row)

Description

Returns a one-row tibble with one team's final score for one WBB event: numeric value, display string, winner flag, and source metadata. Quick-lookup wrapper — use espn_wbb_game_team_linescores() for per-period detail.

Usage

espn_wbb_game_team_score(event_id, team_id, ...)

Arguments

event_id

ESPN event identifier.

team_id

ESPN team identifier.

...

Additional arguments; currently unused.

Value

A single-row tibble.

Author(s)

Saiem Gilani

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_broadcasts(), espn_wbb_game_odds(), espn_wbb_game_official_detail(), espn_wbb_game_officials(), espn_wbb_game_play(), espn_wbb_game_play_personnel(), espn_wbb_game_player_box(), espn_wbb_game_powerindex(), espn_wbb_game_predictor(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_rosters(), espn_wbb_game_situation(), espn_wbb_game_team_leaders(), espn_wbb_game_team_linescores(), espn_wbb_game_team_records(), espn_wbb_game_team_roster(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_statistics(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_awards(), espn_wbb_player_box(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog(), espn_wbb_player_eventlog_v2(), espn_wbb_player_gamelog(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_splits(), espn_wbb_player_statisticslog(), espn_wbb_player_stats(), espn_wbb_player_stats_v3(), espn_wbb_position(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), 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_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), 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()

Examples

espn_wbb_game_team_score(event_id = 401276115, team_id = 52)

Get ESPN WBB Event Competitor Team Statistics (Long Format)

Description

Returns full team-game statistics for one team in one WBB event in long format: one row per (category x stat). Covers offensive, defensive, and general categories with both raw values and display strings.

Usage

espn_wbb_game_team_statistics(event_id, team_id, ...)

Arguments

event_id

ESPN event identifier.

team_id

ESPN team identifier.

...

Additional arguments; currently unused.

Value

A long tibble with one row per (category x stat).

Author(s)

Saiem Gilani

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_broadcasts(), espn_wbb_game_odds(), espn_wbb_game_official_detail(), espn_wbb_game_officials(), espn_wbb_game_play(), espn_wbb_game_play_personnel(), espn_wbb_game_player_box(), espn_wbb_game_powerindex(), espn_wbb_game_predictor(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_rosters(), espn_wbb_game_situation(), espn_wbb_game_team_leaders(), espn_wbb_game_team_linescores(), espn_wbb_game_team_records(), espn_wbb_game_team_roster(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_score(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_awards(), espn_wbb_player_box(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog(), espn_wbb_player_eventlog_v2(), espn_wbb_player_gamelog(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_splits(), espn_wbb_player_statisticslog(), espn_wbb_player_stats(), espn_wbb_player_stats_v3(), espn_wbb_position(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), 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_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), 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()

Examples

espn_wbb_game_team_statistics(event_id = 401276115, team_id = 52)

Get ESPN Women's College Basketball Injuries

Description

Get ESPN Women's College Basketball Injuries

Get ESPN Women's College Basketball Injuries

Usage

espn_wbb_injuries(season = most_recent_wbb_season(), ...)

Arguments

season

Numeric or character season year (e.g. 2025). The ESPN injury endpoint does not filter by season server-side; the value is attached as a constant column on the returned tibble for downstream joins. Defaults to most_recent_wbb_season().

...

Currently unused; reserved for future argument threading.

Value

Returns a tibble of league-wide WBB injury records. ESPN's WBB injury data is typically sparse; the function returns an empty tibble (zero rows) when no injuries are reported.

Injuries

col_name types description
team_id character Unique team identifier.
athlete_id character Unique athlete identifier (ESPN).
athlete_name character Athlete display name (ESPN).
position character Listed roster position (G, F, C, etc.).
status character Status label.
date character Date in YYYY-MM-DD format.
type character Record type / category.
side character Side label (e.g. 'home', 'away', or 'overUnder').
returns_at character Returns at.
short_comment character Short comment.
long_comment character Long-form play / event comment.
season integer Season identifier (4-digit year or 'YYYY-YY' string).

Author(s)

Saiem Gilani

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_broadcasts(), espn_wbb_game_odds(), espn_wbb_game_official_detail(), espn_wbb_game_officials(), espn_wbb_game_play(), espn_wbb_game_play_personnel(), espn_wbb_game_player_box(), espn_wbb_game_powerindex(), espn_wbb_game_predictor(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_rosters(), espn_wbb_game_situation(), espn_wbb_game_team_leaders(), espn_wbb_game_team_linescores(), espn_wbb_game_team_records(), espn_wbb_game_team_roster(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_score(), espn_wbb_game_team_statistics(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_awards(), espn_wbb_player_box(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog(), espn_wbb_player_eventlog_v2(), espn_wbb_player_gamelog(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_splits(), espn_wbb_player_statisticslog(), espn_wbb_player_stats(), espn_wbb_player_stats_v3(), espn_wbb_position(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), 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_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), 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()

Examples

espn_wbb_injuries()

Get ESPN Women's College Basketball League Leaders

Description

Get ESPN Women's College Basketball League Leaders

Get ESPN Women's College Basketball League Leaders

Usage

espn_wbb_leaders(season = most_recent_wbb_season(), season_type = 2, ...)

Arguments

season

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

season_type

Integer season type: 1 = preseason, 2 = regular (default), 3 = postseason.

...

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 category-athlete pair.

col_name types description
season integer Season identifier (4-digit year or 'YYYY-YY' string).
season_type integer Season type (1=pre-season, 2=regular season, 3=postseason, 4=off-season for ESPN; or string label for WNBA Stats).
category character Category label.
abbreviation character Short abbreviation.
athlete_id character Unique athlete identifier (ESPN).
athlete_name character Athlete display name (ESPN).
team_id character Unique team identifier.
team_abbrev character Abbreviation for team.
value numeric Numeric or string value field.
rank integer Whether to include statistical ranks in the returned table.
display_value character Human-readable display value.

Author(s)

Saiem Gilani

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_broadcasts(), espn_wbb_game_odds(), espn_wbb_game_official_detail(), espn_wbb_game_officials(), espn_wbb_game_play(), espn_wbb_game_play_personnel(), espn_wbb_game_player_box(), espn_wbb_game_powerindex(), espn_wbb_game_predictor(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_rosters(), espn_wbb_game_situation(), espn_wbb_game_team_leaders(), espn_wbb_game_team_linescores(), espn_wbb_game_team_records(), espn_wbb_game_team_roster(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_score(), espn_wbb_game_team_statistics(), espn_wbb_injuries(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_awards(), espn_wbb_player_box(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog(), espn_wbb_player_eventlog_v2(), espn_wbb_player_gamelog(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_splits(), espn_wbb_player_statisticslog(), espn_wbb_player_stats(), espn_wbb_player_stats_v3(), espn_wbb_position(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), 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_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), 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()

Examples

espn_wbb_leaders(season = 2025, season_type = 2)

Get ESPN WBB News

Description

Get ESPN WBB News

Get ESPN Women's College Basketball News

Usage

espn_wbb_news(limit = 50)

Arguments

limit

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

Details

Retrieve ESPN women's college basketball news. Uses getOption("wehoop.proxy") or http_proxy/https_proxy environment variables for proxy configuration (per-call proxy override is not supported for ESPN wrappers).

Value

Returns a tibble of news articles.

col_name types description
id character Unique play identifcation number
type character Record type / category.
headline character News headline.
description character Long-form description text.
published character Publication timestamp (ISO 8601).
premium logical Premium.
byline character News article byline / author.
link_web character Web link / URL.
league_id character League identifier ('10' = WNBA).

Author(s)

Saiem Gilani

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_broadcasts(), espn_wbb_game_odds(), espn_wbb_game_official_detail(), espn_wbb_game_officials(), espn_wbb_game_play(), espn_wbb_game_play_personnel(), espn_wbb_game_player_box(), espn_wbb_game_powerindex(), espn_wbb_game_predictor(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_rosters(), espn_wbb_game_situation(), espn_wbb_game_team_leaders(), espn_wbb_game_team_linescores(), espn_wbb_game_team_records(), espn_wbb_game_team_roster(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_score(), espn_wbb_game_team_statistics(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_pbp(), espn_wbb_player_awards(), espn_wbb_player_box(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog(), espn_wbb_player_eventlog_v2(), espn_wbb_player_gamelog(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_splits(), espn_wbb_player_statisticslog(), espn_wbb_player_stats(), espn_wbb_player_stats_v3(), espn_wbb_position(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), 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_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), 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()

Examples

espn_wbb_news(limit = 5)

Get ESPN women's college basketball play by play data

Description

Get ESPN women's college basketball play by play data

Usage

espn_wbb_pbp(game_id)

Arguments

game_id

Game ID

Value

Returns a play-by-play data frame

Plays

col_name types description
id character Unique play identifcation number
sequence_number character Sequence number representing a shot-possession (V3 PBP).
text character Text description of the play / record.
away_score integer Away team score at the time of the play.
home_score integer Home team score at the time of the play.
scoring_play logical TRUE if the play resulted in points scored.
score_value integer Point value of the play (2 / 3 / 1).
wallclock character Wallclock.
shooting_play logical TRUE if the play was a shooting attempt.
type_id integer Type identifier (numeric).
type_text character Display text for the type field.
period_number integer Numeric period (1-4 for quarters; 5+ for OT).
period_display_value character Period display label (e.g. '1st Quarter', 'OT').
clock_display_value character Game clock display string (e.g. '8:32').
team_id integer Unique team identifier.
coordinate_x_raw numeric X coordinate as returned by the API before any adjustment.
coordinate_y_raw numeric Y coordinate as returned by the API before any adjustment.
coordinate_x numeric X coordinate on the court (half-court layout).
coordinate_y numeric Y coordinate on the court (half-court layout).
play_id character Unique play identifier within a game.
athlete_id_1 integer Primary athlete identifier (e.g. shooter).
athlete_id_2 integer Secondary athlete identifier (e.g. assister / fouler).
home_team_id integer Unique identifier for the home team.
home_team_mascot character Home team mascot.
home_team_name character Home team name.
home_team_abbrev character Home team three-letter abbreviation.
home_team_logo character Home team logo URL.
home_team_logo_dark character Home team logo URL for dark backgrounds.
home_team_full_name character Full home team name (e.g. 'Las Vegas Aces').
home_team_color character Home team primary color (hex).
home_team_alternate_color character Home team alternate color (hex).
home_team_score integer Home team's score.
home_team_winner logical TRUE if the home team won this game.
home_team_record character Home team's win-loss record.
away_team_id integer Unique identifier for the away team.
away_team_mascot character Away team mascot.
away_team_name character Away team name.
away_team_abbrev character Away team three-letter abbreviation.
away_team_logo character Away team logo URL.
away_team_logo_dark character Away team logo URL for dark backgrounds.
away_team_full_name character Full away team name (e.g. 'Las Vegas Aces').
away_team_color character Away team primary color (hex).
away_team_alternate_color character Away team alternate color (hex).
away_team_score integer Away team's score.
away_team_winner logical TRUE if the away team won this game.
away_team_record character Away team's win-loss record.
game_id integer Unique game identifier.
season integer Season identifier (4-digit year or 'YYYY-YY' string).
season_type integer Season type (1=pre-season, 2=regular season, 3=postseason, 4=off-season for ESPN; or string label for WNBA Stats).
game_date Date Game date (YYYY-MM-DD).
game_date_time POSIXct Game start date/time (ISO 8601).

Author(s)

Saiem Gilani

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_broadcasts(), espn_wbb_game_odds(), espn_wbb_game_official_detail(), espn_wbb_game_officials(), espn_wbb_game_play(), espn_wbb_game_play_personnel(), espn_wbb_game_player_box(), espn_wbb_game_powerindex(), espn_wbb_game_predictor(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_rosters(), espn_wbb_game_situation(), espn_wbb_game_team_leaders(), espn_wbb_game_team_linescores(), espn_wbb_game_team_records(), espn_wbb_game_team_roster(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_score(), espn_wbb_game_team_statistics(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_player_awards(), espn_wbb_player_box(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog(), espn_wbb_player_eventlog_v2(), espn_wbb_player_gamelog(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_splits(), espn_wbb_player_statisticslog(), espn_wbb_player_stats(), espn_wbb_player_stats_v3(), espn_wbb_position(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), 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_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), 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()

Examples

try(espn_wbb_pbp(game_id = 401498717))

Get ESPN Women's College Basketball Athlete Awards

Description

Get ESPN Women's College Basketball Athlete Awards

Get ESPN Women's College Basketball Athlete Awards

Usage

espn_wbb_player_awards(athlete_id, ...)

Arguments

athlete_id

ESPN athlete identifier (character or numeric).

...

Additional arguments; currently unused.

Value

A single tibble. This endpoint is sparse; many athletes have no award data, in which case an empty tibble with canonical columns is returned.

col_name types description
season character Season identifier (4-digit year or 'YYYY-YY' string).
award_id character Unique identifier for award.
name character Display name.
description character Long-form description text.
date character Date in YYYY-MM-DD format.
type character Record type / category.

Author(s)

Saiem Gilani

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_broadcasts(), espn_wbb_game_odds(), espn_wbb_game_official_detail(), espn_wbb_game_officials(), espn_wbb_game_play(), espn_wbb_game_play_personnel(), espn_wbb_game_player_box(), espn_wbb_game_powerindex(), espn_wbb_game_predictor(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_rosters(), espn_wbb_game_situation(), espn_wbb_game_team_leaders(), espn_wbb_game_team_linescores(), espn_wbb_game_team_records(), espn_wbb_game_team_roster(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_score(), espn_wbb_game_team_statistics(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_box(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog(), espn_wbb_player_eventlog_v2(), espn_wbb_player_gamelog(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_splits(), espn_wbb_player_statisticslog(), espn_wbb_player_stats(), espn_wbb_player_stats_v3(), espn_wbb_position(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), 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_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), 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()

Examples

espn_wbb_player_awards(athlete_id = "4433404")

Get ESPN women's college basketball player box

Description

Get ESPN women's college basketball player box

Usage

espn_wbb_player_box(game_id)

Arguments

game_id

Game ID

Value

Returns a player boxscore data frame

Player

col_name types description
game_id integer Unique game identifier.
season integer Season identifier (4-digit year or 'YYYY-YY' string).
season_type integer Season type (1=pre-season, 2=regular season, 3=postseason, 4=off-season for ESPN; or string label for WNBA Stats).
game_date Date Game date (YYYY-MM-DD).
game_date_time POSIXct Game start date/time (ISO 8601).
athlete_id integer Unique athlete identifier (ESPN).
athlete_display_name character Athlete display name (full).
team_id integer Unique team identifier.
team_name character Full team display name (e.g. 'Las Vegas Aces').
team_location character Team city or location string.
team_short_display_name character Short team display name (e.g. 'Aces').
minutes numeric Minutes played, formatted MM:SS (V3 PT-duration parsed) or decimal minutes (V2).
field_goals_made integer Field goals made (2-pt + 3-pt).
field_goals_attempted integer Field goal attempts (2-pt + 3-pt).
three_point_field_goals_made integer Three-point field goals made.
three_point_field_goals_attempted integer Three-point field goal attempts.
free_throws_made integer Free throws made.
free_throws_attempted integer Free throw attempts.
offensive_rebounds integer Offensive rebounds.
defensive_rebounds integer Defensive rebounds.
rebounds integer Total rebounds.
assists integer Total assists.
steals integer Total steals.
blocks integer Total blocks.
turnovers integer Total turnovers.
fouls integer Personal fouls.
points integer Points scored.
starter logical TRUE if the player was in the starting lineup; FALSE otherwise.
ejected logical TRUE if the player was ejected from the game.
did_not_play logical TRUE if the player did not appear in the game.
active logical TRUE if the row represents an active record (player / team / season).
athlete_jersey character Athlete jersey number.
athlete_short_name character Athlete short display name.
athlete_headshot_href character Athlete headshot image URL.
athlete_position_name character Athlete position ('Guard', 'Forward', 'Center').
athlete_position_abbreviation character Athlete position abbreviation (G / F / C).
team_display_name character Full team display name.
team_uid character ESPN universal team identifier (UID format 's:40~l:...~t:...').
team_slug character URL-safe team identifier (e.g. 'lasvegas-aces' / 'aces').
team_logo character Team logo image URL.
team_abbreviation character Short team abbreviation (e.g. 'LAS').
team_color character Team primary color (hex without leading '#').
team_alternate_color character Team alternate color (hex without leading '#').
home_away character Game venue label ('home' or 'away').
team_winner logical TRUE if the team won this game.
team_score integer Team's score / final score.
opponent_team_id integer Unique identifier for the opponent team.
opponent_team_name character Opponent team display name.
opponent_team_location character Opponent team city / location.
opponent_team_display_name character Opponent team full display name.
opponent_team_abbreviation character Opponent team abbreviation.
opponent_team_logo character Opponent team logo URL.
opponent_team_color character Opponent team primary color (hex).
opponent_team_alternate_color character Opponent team alternate color (hex).
opponent_team_score integer Opponent team's score.

Author(s)

Saiem Gilani

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_broadcasts(), espn_wbb_game_odds(), espn_wbb_game_official_detail(), espn_wbb_game_officials(), espn_wbb_game_play(), espn_wbb_game_play_personnel(), espn_wbb_game_player_box(), espn_wbb_game_powerindex(), espn_wbb_game_predictor(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_rosters(), espn_wbb_game_situation(), espn_wbb_game_team_leaders(), espn_wbb_game_team_linescores(), espn_wbb_game_team_records(), espn_wbb_game_team_roster(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_score(), espn_wbb_game_team_statistics(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_awards(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog(), espn_wbb_player_eventlog_v2(), espn_wbb_player_gamelog(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_splits(), espn_wbb_player_statisticslog(), espn_wbb_player_stats(), espn_wbb_player_stats_v3(), espn_wbb_position(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), 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_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), 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()

Examples

try(espn_wbb_player_box(game_id = 401276115))

Get ESPN WBB Athlete Career Stats (Long Format)

Description

Returns career stats for a WBB athlete in long format. Default stat_type = 0L fetches the standard "All Splits" / regular-season view. Pass a vector like c(0L, 1L, 2L) to attempt multiple types and bind them via a stat_type_id column; variants that 404 for that athlete are silently skipped. Stat types: 0 = regular season (default endpoint), 1 = postseason, 2 = career aggregate. Coverage of types 1 and 2 is sparse — many athletes only have type 0 populated.

Usage

espn_wbb_player_career_stats(athlete_id, stat_type = 0L, ...)

Arguments

athlete_id

ESPN athlete identifier.

stat_type

Integer or integer vector of stat-type codes. Default 0L fetches the standard "All Splits" / regular-season view. Pass a vector like c(0L, 1L, 2L) to bind multiple types via a stat_type_id column; non-existent variants are silently skipped.

...

Additional arguments; currently unused.

Details

Get ESPN WBB Athlete Career Stats (Long Format)

Value

A long tibble (one row per stat_type × split × category × stat).

col_name types description
league character League slug.
athlete_id character ESPN athlete id.
stat_type_id character Stat-type code (0 = reg, 1 = post, 2 = career).
split_id character Split id.
split_name character Split name (typically "All Splits").
split_type character Split type code.
category_name character Category key (e.g. "defensive").
category_display character Category display name.
category_short character Category short display.
category_abbrev character Category abbreviation.
stat_name character Stat key.
stat_abbrev character Stat abbreviation.
stat_display character Stat display name.
stat_short character Stat short display.
description character Stat description.
value numeric Stat value.
display_value character Display-formatted value.

Author(s)

Saiem Gilani

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_broadcasts(), espn_wbb_game_odds(), espn_wbb_game_official_detail(), espn_wbb_game_officials(), espn_wbb_game_play(), espn_wbb_game_play_personnel(), espn_wbb_game_player_box(), espn_wbb_game_powerindex(), espn_wbb_game_predictor(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_rosters(), espn_wbb_game_situation(), espn_wbb_game_team_leaders(), espn_wbb_game_team_linescores(), espn_wbb_game_team_records(), espn_wbb_game_team_roster(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_score(), espn_wbb_game_team_statistics(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_awards(), espn_wbb_player_box(), espn_wbb_player_eventlog(), espn_wbb_player_eventlog_v2(), espn_wbb_player_gamelog(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_splits(), espn_wbb_player_statisticslog(), espn_wbb_player_stats(), espn_wbb_player_stats_v3(), espn_wbb_position(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), 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_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), 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()

Examples

# LeBron James — regular + postseason combined
  espn_wbb_player_career_stats(athlete_id = 4433404)
  # Just career aggregate
  espn_wbb_player_career_stats(athlete_id = 4433404, stat_type = 2L)

Get ESPN Women's College Basketball Athlete Eventlog

Description

Get ESPN Women's College Basketball Athlete Eventlog

Get ESPN Women's College Basketball Athlete Eventlog

Usage

espn_wbb_player_eventlog(athlete_id, season = most_recent_wbb_season(), ...)

Arguments

athlete_id

ESPN athlete identifier (character or numeric).

season

Season year (numeric). Defaults to the most recent WBB season.

...

Additional arguments; currently unused.

Value

A single tibble. Per-event statistics.$ref URLs from the ESPN core-v2 API are returned as the character column statistics_ref and are NOT resolved. Similarly, event_ref, competition_ref, and team_ref are returned as character columns.

col_name types description
event_ref character Reference link to the originating event.
competition_ref character Competition ref.
team_ref character Team ref.
statistics_ref character Statistics ref.

Author(s)

Saiem Gilani

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_broadcasts(), espn_wbb_game_odds(), espn_wbb_game_official_detail(), espn_wbb_game_officials(), espn_wbb_game_play(), espn_wbb_game_play_personnel(), espn_wbb_game_player_box(), espn_wbb_game_powerindex(), espn_wbb_game_predictor(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_rosters(), espn_wbb_game_situation(), espn_wbb_game_team_leaders(), espn_wbb_game_team_linescores(), espn_wbb_game_team_records(), espn_wbb_game_team_roster(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_score(), espn_wbb_game_team_statistics(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_awards(), espn_wbb_player_box(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog_v2(), espn_wbb_player_gamelog(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_splits(), espn_wbb_player_statisticslog(), espn_wbb_player_stats(), espn_wbb_player_stats_v3(), espn_wbb_position(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), 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_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), 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()

Examples

espn_wbb_player_eventlog(athlete_id = "4433404", season = 2025)

Get ESPN WBB Athlete Per-Season Event Log (core-v2)

Description

Returns one row per (event x team) for an WBB athlete's appearances in a given season. Distinct from espn_wbb_player_eventlog() which wraps the web-common-v3 endpoint; this core-v2 variant is era-correct.

Usage

espn_wbb_player_eventlog_v2(athlete_id, season = most_recent_wbb_season(), ...)

Arguments

athlete_id

ESPN athlete identifier.

season

Season year. Defaults to most recent WBB season.

...

Additional arguments; currently unused.

Value

A tibble with one row per event appearance.

Author(s)

Saiem Gilani

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_broadcasts(), espn_wbb_game_odds(), espn_wbb_game_official_detail(), espn_wbb_game_officials(), espn_wbb_game_play(), espn_wbb_game_play_personnel(), espn_wbb_game_player_box(), espn_wbb_game_powerindex(), espn_wbb_game_predictor(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_rosters(), espn_wbb_game_situation(), espn_wbb_game_team_leaders(), espn_wbb_game_team_linescores(), espn_wbb_game_team_records(), espn_wbb_game_team_roster(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_score(), espn_wbb_game_team_statistics(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_awards(), espn_wbb_player_box(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog(), espn_wbb_player_gamelog(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_splits(), espn_wbb_player_statisticslog(), espn_wbb_player_stats(), espn_wbb_player_stats_v3(), espn_wbb_position(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), 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_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), 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()

Examples

espn_wbb_player_eventlog_v2(athlete_id = 4433404, season = 2025)

Get ESPN Women's College Basketball Athlete Gamelog

Description

Get ESPN Women's College Basketball Athlete Gamelog

Get ESPN Women's College Basketball Athlete Gamelog

Usage

espn_wbb_player_gamelog(athlete_id, season = most_recent_wbb_season(), ...)

Arguments

athlete_id

ESPN athlete identifier (character or numeric).

season

Season year (numeric). Defaults to the most recent WBB season.

...

Additional arguments; currently unused.

Value

A single tibble with one row per game. Column names reflect the stat labels returned by ESPN and will vary by season and player.

Author(s)

Saiem Gilani

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_broadcasts(), espn_wbb_game_odds(), espn_wbb_game_official_detail(), espn_wbb_game_officials(), espn_wbb_game_play(), espn_wbb_game_play_personnel(), espn_wbb_game_player_box(), espn_wbb_game_powerindex(), espn_wbb_game_predictor(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_rosters(), espn_wbb_game_situation(), espn_wbb_game_team_leaders(), espn_wbb_game_team_linescores(), espn_wbb_game_team_records(), espn_wbb_game_team_roster(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_score(), espn_wbb_game_team_statistics(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_awards(), espn_wbb_player_box(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog(), espn_wbb_player_eventlog_v2(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_splits(), espn_wbb_player_statisticslog(), espn_wbb_player_stats(), espn_wbb_player_stats_v3(), espn_wbb_position(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), 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_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), 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()

Examples

espn_wbb_player_gamelog(athlete_id = "4433404", season = 2025)

Get ESPN Women's College Basketball Athlete Info

Description

Get ESPN Women's College Basketball Athlete Info

Get ESPN Women's College Basketball Athlete Info

Usage

espn_wbb_player_info(athlete_id, ...)

Arguments

athlete_id

ESPN athlete identifier (character or numeric).

...

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 data frames: Bio, Team, Position, Status, College, Draft.

Bio

col_name types description
id character Unique play identifcation number
full_name character Player's full name.
display_name character Display name.
jersey character Jersey number worn by the player.
age character Player age (in years).
date_of_birth character Date of birth (YYYY-MM-DD).
headshot_href character Headshot image URL.

Team

col_name types description
id character Unique play identifcation number
abbreviation character Short abbreviation.
display_name character Display name.

Position

col_name types description
id character Unique play identifcation number
name character Display name.
abbreviation character Short abbreviation.

Status

col_name types description
id character Unique play identifcation number
name character Display name.
type character Record type / category.

College

col_name types description
id character Unique play identifcation number
name character Display name.
mascot character Team mascot.

Draft

col_name types description
year character 4-digit year.
round character Tournament / playoff round.
selection character Selection.

Author(s)

Saiem Gilani

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_broadcasts(), espn_wbb_game_odds(), espn_wbb_game_official_detail(), espn_wbb_game_officials(), espn_wbb_game_play(), espn_wbb_game_play_personnel(), espn_wbb_game_player_box(), espn_wbb_game_powerindex(), espn_wbb_game_predictor(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_rosters(), espn_wbb_game_situation(), espn_wbb_game_team_leaders(), espn_wbb_game_team_linescores(), espn_wbb_game_team_records(), espn_wbb_game_team_roster(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_score(), espn_wbb_game_team_statistics(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_awards(), espn_wbb_player_box(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog(), espn_wbb_player_eventlog_v2(), espn_wbb_player_gamelog(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_splits(), espn_wbb_player_statisticslog(), espn_wbb_player_stats(), espn_wbb_player_stats_v3(), espn_wbb_position(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), 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_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), 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()

Examples

espn_wbb_player_info(athlete_id = "4433404")

Get ESPN Women's College Basketball Athlete Overview

Description

Get ESPN Women's College Basketball Athlete Overview

Get ESPN Women's College Basketball Athlete Overview

Usage

espn_wbb_player_overview(athlete_id, season = most_recent_wbb_season(), ...)

Arguments

athlete_id

ESPN athlete identifier (character or numeric).

season

Season year (numeric). Defaults to the most recent WBB season.

...

Additional arguments; currently unused.

Value

A named list of data frames: Statistics, NextGame, Last5Games, Headlines, FantasyOutlook.

Statistics

col_name types description
(varies) character

NextGame

col_name types description
id character Unique play identifcation number
date character Date in YYYY-MM-DD format.
name character Display name.
short_name character Short display name.

Last5Games

col_name types description
(varies) character

Headlines

col_name types description
headline character News headline.
description character Long-form description text.
published character Publication timestamp (ISO 8601).

FantasyOutlook

col_name types description
(varies) character

Author(s)

Saiem Gilani

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_broadcasts(), espn_wbb_game_odds(), espn_wbb_game_official_detail(), espn_wbb_game_officials(), espn_wbb_game_play(), espn_wbb_game_play_personnel(), espn_wbb_game_player_box(), espn_wbb_game_powerindex(), espn_wbb_game_predictor(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_rosters(), espn_wbb_game_situation(), espn_wbb_game_team_leaders(), espn_wbb_game_team_linescores(), espn_wbb_game_team_records(), espn_wbb_game_team_roster(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_score(), espn_wbb_game_team_statistics(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_awards(), espn_wbb_player_box(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog(), espn_wbb_player_eventlog_v2(), espn_wbb_player_gamelog(), espn_wbb_player_info(), espn_wbb_player_seasons(), espn_wbb_player_splits(), espn_wbb_player_statisticslog(), espn_wbb_player_stats(), espn_wbb_player_stats_v3(), espn_wbb_position(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), 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_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), 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()

Examples

espn_wbb_player_overview(athlete_id = "4433404", season = 2025)

Get ESPN WBB Athlete Career Seasons

Description

Returns the list of seasons an WBB athlete appeared in. Useful for bounding follow-up calls to per-season endpoints.

Usage

espn_wbb_player_seasons(athlete_id, ...)

Arguments

athlete_id

ESPN athlete identifier (character or numeric).

...

Additional arguments; currently unused.

Value

A tibble with one row per career season.

col_name types description
league character League slug.
athlete_id character ESPN athlete id.
season integer Season year.
ref character ⁠$ref⁠ URL to the season detail.

Author(s)

Saiem Gilani

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_broadcasts(), espn_wbb_game_odds(), espn_wbb_game_official_detail(), espn_wbb_game_officials(), espn_wbb_game_play(), espn_wbb_game_play_personnel(), espn_wbb_game_player_box(), espn_wbb_game_powerindex(), espn_wbb_game_predictor(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_rosters(), espn_wbb_game_situation(), espn_wbb_game_team_leaders(), espn_wbb_game_team_linescores(), espn_wbb_game_team_records(), espn_wbb_game_team_roster(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_score(), espn_wbb_game_team_statistics(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_awards(), espn_wbb_player_box(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog(), espn_wbb_player_eventlog_v2(), espn_wbb_player_gamelog(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_splits(), espn_wbb_player_statisticslog(), espn_wbb_player_stats(), espn_wbb_player_stats_v3(), espn_wbb_position(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), 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_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), 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()

Examples

# LeBron James (1966): 23 career seasons
  espn_wbb_player_seasons(athlete_id = 4433404)

Get ESPN Women's College Basketball Athlete Splits

Description

Get ESPN Women's College Basketball Athlete Splits

Get ESPN Women's College Basketball Athlete Splits

Usage

espn_wbb_player_splits(athlete_id, season = most_recent_wbb_season(), ...)

Arguments

athlete_id

ESPN athlete identifier (character or numeric).

season

Season year (numeric). Defaults to the most recent WBB season.

...

Additional arguments; currently unused.

Value

A single long-format tibble. When data are present, columns include at minimum category and split_name, plus per-stat columns driven by ESPN labels.

Author(s)

Saiem Gilani

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_broadcasts(), espn_wbb_game_odds(), espn_wbb_game_official_detail(), espn_wbb_game_officials(), espn_wbb_game_play(), espn_wbb_game_play_personnel(), espn_wbb_game_player_box(), espn_wbb_game_powerindex(), espn_wbb_game_predictor(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_rosters(), espn_wbb_game_situation(), espn_wbb_game_team_leaders(), espn_wbb_game_team_linescores(), espn_wbb_game_team_records(), espn_wbb_game_team_roster(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_score(), espn_wbb_game_team_statistics(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_awards(), espn_wbb_player_box(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog(), espn_wbb_player_eventlog_v2(), espn_wbb_player_gamelog(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_statisticslog(), espn_wbb_player_stats(), espn_wbb_player_stats_v3(), espn_wbb_position(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), 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_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), 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()

Examples

espn_wbb_player_splits(athlete_id = "4433404", season = 2025)

Get ESPN Women's College Basketball Athlete Statisticslog

Description

Get ESPN Women's College Basketball Athlete Statisticslog

Get ESPN Women's College Basketball Athlete Statisticslog

Usage

espn_wbb_player_statisticslog(
  athlete_id,
  season = most_recent_wbb_season(),
  ...
)

Arguments

athlete_id

ESPN athlete identifier (character or numeric).

season

Season year (numeric). Defaults to the most recent WBB season.

...

Additional arguments; currently unused.

Value

A single tibble. When resolved, each row corresponds to one statistical entry in the core-v2 statistics log, with event_ref and statistics_ref character columns pointing to resolvable ESPN endpoints.

col_name types description
event_ref character Reference link to the originating event.
statistics_ref character Statistics ref.

Author(s)

Saiem Gilani

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_broadcasts(), espn_wbb_game_odds(), espn_wbb_game_official_detail(), espn_wbb_game_officials(), espn_wbb_game_play(), espn_wbb_game_play_personnel(), espn_wbb_game_player_box(), espn_wbb_game_powerindex(), espn_wbb_game_predictor(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_rosters(), espn_wbb_game_situation(), espn_wbb_game_team_leaders(), espn_wbb_game_team_linescores(), espn_wbb_game_team_records(), espn_wbb_game_team_roster(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_score(), espn_wbb_game_team_statistics(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_awards(), espn_wbb_player_box(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog(), espn_wbb_player_eventlog_v2(), espn_wbb_player_gamelog(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_splits(), espn_wbb_player_stats(), espn_wbb_player_stats_v3(), espn_wbb_position(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), 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_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), 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()

Examples

espn_wbb_player_statisticslog(athlete_id = "4433404", season = 2025)

Get ESPN women's college basketball player stats data

Description

Get ESPN women's college basketball player stats data

Usage

espn_wbb_player_stats(athlete_id, year, season_type = "regular", total = FALSE)

Arguments

athlete_id

Athlete ID

year

Year

season_type

(character, default: regular): Season type - regular or postseason

total

(boolean, default: FALSE): Totals

Value

Returns a tibble with the player stats data

col_name types description
athlete_id integer Unique athlete identifier (ESPN).
athlete_uid character ESPN athlete UID (universal identifier).
athlete_guid character ESPN athlete GUID.
athlete_type character Athlete type / class.
sdr integer Sdr.
first_name character Player's first name.
last_name character Player's last name.
full_name character Player's full name.
display_name character Display name.
short_name character Short display name.
height numeric Player height (string e.g. '6-2' or inches).
display_height character Player height in display format (e.g. '6-2').
birth_place_city character Birth place city.
birth_place_state character Birth place state.
birth_place_country character Birth place country.
slug character URL-safe identifier.
headshot_href character Headshot image URL.
headshot_alt character Alternative-text label for the headshot.
jersey character Jersey number worn by the player.
position_id integer Unique position identifier.
position_name character Listed roster position ('Guard', 'Forward', 'Center').
position_display_name character Position display name.
position_abbreviation character Position abbreviation ('G' / 'F' / 'C').
position_leaf logical Position leaf.
linked logical TRUE if the record is linked to a related entity.
experience_years integer Experience years.
experience_display_value character Experience display value.
experience_abbreviation character Experience abbreviation.
active logical TRUE if the row represents an active record (player / team / season).
status_id integer Status identifier.
status_name character Status label.
status_type character Status type.
status_abbreviation character Status abbreviation.
defensive_blocks numeric Short for blocked shot, number of times when a defensive player legally deflects a field goal attempt from an offensive player.
defensive_defensive_rebounds numeric The number of times when the defense obtains the possession of the ball after a missed shot by the offense.
defensive_steals numeric The number of times a defensive player forced a turnover by intercepting or deflecting a pass or a dribble of an offensive player.
defensive_turnover_points numeric The amount of points resulting from the possession following a turnover.
defensive_avg_defensive_rebounds numeric The average defensive rebounds per game.
defensive_avg_blocks numeric The average blocks per game.
defensive_avg_steals numeric The average steals per game.
general_disqualifications numeric The number of times a player reached the foul limit.
general_flagrant_fouls numeric The number of fouls that the officials thought were unnecessary or excessive.
general_fouls numeric The number of times a player had illegal contact with the opponent.
general_per numeric A numerical value for each of a player's accomplishments per-minute and is pace-adjusted for the team they play on. The league average in PER to 15.00 every season.
general_ejections numeric The number of times a player or coach is removed from the game as a result of a serious offense.
general_technical_fouls numeric The number of times an player or coach was called for a technical foul (unsportsmanlike conduct or violations).
general_rebounds numeric The total number of rebounds (offensive and defensive).
general_minutes numeric The total number of minutes played.
general_avg_minutes numeric The average number of minutes per game.
general_fantasy_rating numeric The Fantasy Rating of a player.
general_plus_minus numeric A player's estimated on-court impact on team performance measured in point differential per 100 possessions.
general_avg_rebounds numeric The average rebounds per game.
general_avg_fouls numeric The average fouls committed per game.
general_avg_flagrant_fouls numeric The average number of flagrant fouls per game.
general_avg_technical_fouls numeric The average number of technical fouls per game.
general_avg_ejections numeric The average ejections per game.
general_avg_disqualifications numeric The average number of disqualifications per game.
general_assist_turnover_ratio numeric The average number of assists a player or team records per turnover.
general_steal_foul_ratio numeric The average number of steals a player or team records per foul committed.
general_block_foul_ratio numeric The average number of blocks a player or record per foul committed.
general_avg_team_rebounds numeric The average number of rebounds for a team per game.
general_total_rebounds numeric The total number of rebounds for a team or player.
general_total_technical_fouls numeric The total number of technical fouls for a team or player.
general_steal_turnover_ratio numeric The number of steals per turnover.
general_games_played numeric Games Played.
general_games_started numeric The number of games started by an athlete.
general_double_double numeric The number of times double digit values were accumulated in 2 of the following categories: points, rebounds, assists, steals, and blocked shots.
general_triple_double numeric The number of times double digit values were accumulated in 3 of the following categories: points, rebounds, assists, steals, and blocked shots.
offensive_assists numeric The number of times a player who passes the ball to a teammate in a way that leads to a score by field goal, meaning that he or she was "assisting" in the basket. There is some judgment involved in deciding whether a passer should be credited with an assist.
offensive_field_goals numeric Field Goal makes and attempts.
offensive_field_goals_attempted numeric The number of times a 2pt field goal was attempted.
offensive_field_goals_made numeric The number of times a 2pt field goal was made.
offensive_field_goal_pct numeric The ratio of field goals made to field goals attempted: FGM / FGA.
offensive_free_throws numeric Free Throw makes and attempts.
offensive_free_throw_pct numeric The ratio of free throws made to free throws attempted: FTM / FTA.
offensive_free_throws_attempted numeric The number of times a free throw was attempted.
offensive_free_throws_made numeric The number of times a free throw was made.
offensive_offensive_rebounds numeric The number of times when the offense obtains the possession of the ball after a missed shot.
offensive_points numeric The number of points scored.
offensive_turnovers numeric The number of times a player loses possession to the other team.
offensive_three_point_field_goals_attempted numeric The number of times a 3pt field goal was attempted.
offensive_three_point_field_goals_made numeric The number of times a 3pt field goal was made.
offensive_total_turnovers numeric The number of turnovers plus team turnovers for the team.
offensive_points_in_paint numeric The amount of points scored in the area known as "the Paint"(the rectangle between the foul line and the baseline).
offensive_fast_break_points numeric The number of points scored on fast breaks.
offensive_avg_field_goals_made numeric The average field goals made per game.
offensive_avg_field_goals_attempted numeric The average field goals attempted per game.
offensive_avg_three_point_field_goals_made numeric The average three point field goals made per game.
offensive_avg_three_point_field_goals_attempted numeric The average three point field goals attempted per game.
offensive_avg_free_throws_made numeric The average free throw shots made per game.
offensive_avg_free_throws_attempted numeric The average free throw shots attempted per game.
offensive_avg_points numeric The average number of points scored per game.
offensive_avg_offensive_rebounds numeric The average offensive rebounds per game.
offensive_avg_assists numeric The average assists per game.
offensive_avg_turnovers numeric The average turnovers committed per game.
offensive_offensive_rebound_pct numeric The percentage of the number of times they obtain the possession of the ball after a missed shot.
offensive_estimated_possessions numeric An estimation of the number of possessions for a team or player.
offensive_avg_estimated_possessions numeric The average number of estimated possessions per game for a team or player.
offensive_points_per_estimated_possessions numeric The number of points per estimated possession for a team or player.
offensive_avg_team_turnovers numeric The average number of turnovers for a team per game.
offensive_avg_total_turnovers numeric The average number of total turnovers for a team per game.
offensive_three_point_field_goal_pct numeric The ratio of 3pt field goals made to 3pt field goals attempted: 3PM / 3PA.
offensive_two_point_field_goals_made numeric The number of 2-point field goals made for a team or player.
offensive_two_point_field_goals_attempted numeric The number of 2-point field goals attempted for a team or player.
offensive_avg_two_point_field_goals_made numeric The number of 2-point field goals made per game for a team or player.
offensive_avg_two_point_field_goals_attempted numeric The number of 2-point field goals attempted per game for a team or player.
offensive_two_point_field_goal_pct numeric The percentage of 2-points fields goals made by a team or player.
offensive_shooting_efficiency numeric The efficiency with which a team or player shoots the basketball.
offensive_scoring_efficiency numeric The efficiency with which a team or player scores the basketball.
team_id integer Unique team identifier.
team_guid character ESPN team GUID.
team_uid character ESPN universal team identifier (UID format 's:40~l:...~t:...').
team_sdr integer ESPN team SDR identifier.
team_slug character URL-safe team identifier (e.g. 'lasvegas-aces' / 'aces').
team_location character Team city or location string.
team_name character Full team display name (e.g. 'Las Vegas Aces').
team_nickname character Team nickname.
team_abbreviation character Short team abbreviation (e.g. 'LAS').
team_display_name character Full team display name.
team_short_display_name character Short team display name (e.g. 'Aces').
team_color character Team primary color (hex without leading '#').
team_alternate_color character Team alternate color (hex without leading '#').
team_is_active logical TRUE if the team is currently active.
team_is_all_star logical TRUE if the row represents an All-Star team.
logo_href character Team or league logo URL.
logo_dark_href character Logo URL for dark backgrounds.

Author(s)

Saiem Gilani

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_broadcasts(), espn_wbb_game_odds(), espn_wbb_game_official_detail(), espn_wbb_game_officials(), espn_wbb_game_play(), espn_wbb_game_play_personnel(), espn_wbb_game_player_box(), espn_wbb_game_powerindex(), espn_wbb_game_predictor(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_rosters(), espn_wbb_game_situation(), espn_wbb_game_team_leaders(), espn_wbb_game_team_linescores(), espn_wbb_game_team_records(), espn_wbb_game_team_roster(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_score(), espn_wbb_game_team_statistics(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_awards(), espn_wbb_player_box(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog(), espn_wbb_player_eventlog_v2(), espn_wbb_player_gamelog(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_splits(), espn_wbb_player_statisticslog(), espn_wbb_player_stats_v3(), espn_wbb_position(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), 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_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), 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()

Examples

try(espn_wbb_player_stats(athlete_id = 2984250, year = 2022))

Get ESPN Women's College Basketball Athlete Stats

Description

Get ESPN Women's College Basketball Athlete Stats

Get ESPN Women's College Basketball Athlete Stats

Usage

espn_wbb_player_stats_v3(athlete_id, season = most_recent_wbb_season(), ...)

Arguments

athlete_id

ESPN athlete identifier (character or numeric).

season

Season year (numeric). Defaults to the most recent WBB season.

...

Additional arguments; currently unused.

Value

A wide wehoop_data tibble, one row per athlete-season-team, with the ESPN stat categories spread across prefixed columns:

col_name types description
athlete_id character ESPN athlete identifier (echoed input).
season integer Season year for the stat line.
team_id character ESPN team identifier for that season.
team_slug character Team slug (e.g. 'iowa-hawkeyes').
avg_* numeric Per-game season-average stats (e.g. avg_avg_points).
tot_* numeric Season-total stats (e.g. tot_points).
misc_* numeric Miscellaneous season totals.

Stat column names come from ESPN's positional names array per category, cleaned via janitor::make_clean_names(); the exact set varies by league and season.

Author(s)

Saiem Gilani

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_broadcasts(), espn_wbb_game_odds(), espn_wbb_game_official_detail(), espn_wbb_game_officials(), espn_wbb_game_play(), espn_wbb_game_play_personnel(), espn_wbb_game_player_box(), espn_wbb_game_powerindex(), espn_wbb_game_predictor(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_rosters(), espn_wbb_game_situation(), espn_wbb_game_team_leaders(), espn_wbb_game_team_linescores(), espn_wbb_game_team_records(), espn_wbb_game_team_roster(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_score(), espn_wbb_game_team_statistics(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_awards(), espn_wbb_player_box(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog(), espn_wbb_player_eventlog_v2(), espn_wbb_player_gamelog(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_splits(), espn_wbb_player_statisticslog(), 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_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), 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_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), 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()

Examples

espn_wbb_player_stats_v3(athlete_id = "4433985", season = 2025)

Get ESPN WBB Position Detail

Description

Returns metadata for a single WBB position. Useful for dereferencing position ⁠$ref⁠ URLs embedded in athlete records, and for navigating parent/leaf relationships in the position taxonomy.

Usage

espn_wbb_position(position_id, ...)

Arguments

position_id

ESPN position identifier (character or numeric).

...

Additional arguments; currently unused.

Value

A single-row tibble.

Author(s)

Saiem Gilani

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_broadcasts(), espn_wbb_game_odds(), espn_wbb_game_official_detail(), espn_wbb_game_officials(), espn_wbb_game_play(), espn_wbb_game_play_personnel(), espn_wbb_game_player_box(), espn_wbb_game_powerindex(), espn_wbb_game_predictor(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_rosters(), espn_wbb_game_situation(), espn_wbb_game_team_leaders(), espn_wbb_game_team_linescores(), espn_wbb_game_team_records(), espn_wbb_game_team_roster(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_score(), espn_wbb_game_team_statistics(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_awards(), espn_wbb_player_box(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog(), espn_wbb_player_eventlog_v2(), espn_wbb_player_gamelog(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_splits(), espn_wbb_player_statisticslog(), espn_wbb_player_stats(), espn_wbb_player_stats_v3(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), 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_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), 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()

Examples

espn_wbb_position(position_id = 1)

Get ESPN WBB Positions Index

Description

Returns the WBB position dictionary index. One row per position with its id and the canonical ⁠$ref⁠ URL — pass an id to espn_wbb_position() for full details (display name, abbreviation, leaf flag, parent link).

Usage

espn_wbb_positions(...)

Arguments

...

Additional arguments; currently unused.

Value

A tibble with one row per position.

Author(s)

Saiem Gilani

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_broadcasts(), espn_wbb_game_odds(), espn_wbb_game_official_detail(), espn_wbb_game_officials(), espn_wbb_game_play(), espn_wbb_game_play_personnel(), espn_wbb_game_player_box(), espn_wbb_game_powerindex(), espn_wbb_game_predictor(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_rosters(), espn_wbb_game_situation(), espn_wbb_game_team_leaders(), espn_wbb_game_team_linescores(), espn_wbb_game_team_records(), espn_wbb_game_team_roster(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_score(), espn_wbb_game_team_statistics(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_awards(), espn_wbb_player_box(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog(), espn_wbb_player_eventlog_v2(), espn_wbb_player_gamelog(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_splits(), espn_wbb_player_statisticslog(), espn_wbb_player_stats(), espn_wbb_player_stats_v3(), espn_wbb_position(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), 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_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), 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()

Examples

espn_wbb_positions()

Get ESPN WBB Season Power Index (Long Format)

Description

Returns ESPN's Basketball Power Index (BPI) and related per-team metrics for one WBB season, in long format: one row per (team x stat).

Usage

espn_wbb_powerindex(
  season = most_recent_wbb_season(),
  season_type = c(2L, 3L),
  ...
)

Arguments

season

Season year (numeric). Defaults to the most recent WBB season.

season_type

Integer (1=preseason, 2=regular (default), 3=postseason).

...

Additional arguments; currently unused.

Value

A long tibble with one row per (team x stat).

col_name types description
league character League slug.
season integer Season year.
season_type integer 1=preseason, 2=regular, 3=postseason.
team_id character ESPN team id.
stat_name character Internal stat key.
abbreviation character Short stat abbreviation.
display_name character Human-readable stat name.
description character Stat description.
value numeric Stat value.
display_value character Display-formatted value.
last_updated character Last-updated timestamp.
team_ref character ⁠$ref⁠ to the team-in-season resource.

Author(s)

Saiem Gilani

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_broadcasts(), espn_wbb_game_odds(), espn_wbb_game_official_detail(), espn_wbb_game_officials(), espn_wbb_game_play(), espn_wbb_game_play_personnel(), espn_wbb_game_player_box(), espn_wbb_game_powerindex(), espn_wbb_game_predictor(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_rosters(), espn_wbb_game_situation(), espn_wbb_game_team_leaders(), espn_wbb_game_team_linescores(), espn_wbb_game_team_records(), espn_wbb_game_team_roster(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_score(), espn_wbb_game_team_statistics(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_awards(), espn_wbb_player_box(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog(), espn_wbb_player_eventlog_v2(), espn_wbb_player_gamelog(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_splits(), espn_wbb_player_statisticslog(), espn_wbb_player_stats(), espn_wbb_player_stats_v3(), espn_wbb_position(), espn_wbb_positions(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), 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_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), 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()

Examples

espn_wbb_powerindex(season = 2025)

Get women's college basketball AP and Coaches poll rankings

Description

Get women's college basketball AP and Coaches poll rankings

Usage

espn_wbb_rankings()

Value

Returns a tibble

col_name types description
id integer Unique play identifcation number
name character Display name.
short_name character Short display name.
type character Record type / category.
headline character News headline.
short_headline character Short news headline.
current integer Current.
previous integer Previous.
points numeric Points scored.
first_place_votes integer First place votes.
trend character Trend.
date character Date in YYYY-MM-DD format.
last_updated character Last updated.
record_summary character Win-loss record summary string.
team_id integer Unique team identifier.
team_uid character ESPN universal team identifier (UID format 's:40~l:...~t:...').
team_location character Team city or location string.
team_name character Full team display name (e.g. 'Las Vegas Aces').
team_nickname character Team nickname.
team_abbreviation character Short team abbreviation (e.g. 'LAS').
team_color character Team primary color (hex without leading '#').
team_logo character Team logo image URL.
occurrence_number integer Occurrence number.
occurrence_type character Occurrence type.
occurrence_last logical Occurrence last.
occurrence_value character Occurrence value.
occurrence_display_value character Occurrence display value.
season_year integer Season year string ('YYYY-YY' format).
season_start_date character Date in YYYY-MM-DD format.
season_end_date character Date in YYYY-MM-DD format.
season_display_name character Season display label.
season_type_type integer Season type type.
season_type_name character Season type name.
season_type_abbreviation character Season type abbreviation.
first_occurrence_type character First occurrence type.
first_occurrence_value character First occurrence value.

Author(s)

Saiem Gilani

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_broadcasts(), espn_wbb_game_odds(), espn_wbb_game_official_detail(), espn_wbb_game_officials(), espn_wbb_game_play(), espn_wbb_game_play_personnel(), espn_wbb_game_player_box(), espn_wbb_game_powerindex(), espn_wbb_game_predictor(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_rosters(), espn_wbb_game_situation(), espn_wbb_game_team_leaders(), espn_wbb_game_team_linescores(), espn_wbb_game_team_records(), espn_wbb_game_team_roster(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_score(), espn_wbb_game_team_statistics(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_awards(), espn_wbb_player_box(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog(), espn_wbb_player_eventlog_v2(), espn_wbb_player_gamelog(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_splits(), espn_wbb_player_statisticslog(), espn_wbb_player_stats(), espn_wbb_player_stats_v3(), espn_wbb_position(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), 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_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), 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()

Examples

# Get current AP and Coaches Poll rankings

  try(espn_wbb_rankings())

Get ESPN women's college basketball schedule for a specific year

Description

Get ESPN women's college basketball schedule for a specific year

Usage

espn_wbb_scoreboard(season)

Arguments

season

Either numeric or character

Value

Returns a tibble

col_name types description
matchup character Matchup.
matchup_short character Matchup short.
season integer Season identifier (4-digit year or 'YYYY-YY' string).
season_type integer Season type (1=pre-season, 2=regular season, 3=postseason, 4=off-season for ESPN; or string label for WNBA Stats).
season_slug character Season slug.
game_id integer Unique game identifier.
game_uid character Game uid.
game_date Date Game date (YYYY-MM-DD).
attendance integer Reported attendance.
status_name character Status label.
broadcast_market character Broadcast market label (e.g. 'national', 'home').
broadcast_name character Broadcast name.
start_date character Start date (YYYY-MM-DD).
game_date_time POSIXct Game start date/time (ISO 8601).
home_team_name character Home team name.
home_team_logo character Home team logo URL.
home_team_abb character Home team's team abb.
home_team_id integer Unique identifier for the home team.
home_team_location character Home team's team location.
home_team_full_name character Full home team name (e.g. 'Las Vegas Aces').
home_team_color character Home team primary color (hex).
home_score integer Home team score at the time of the play.
home_win integer Home team's win.
home_record character Home win-loss record.
away_team_name character Away team name.
away_team_logo character Away team logo URL.
away_team_abb character Away team's team abb.
away_team_id integer Unique identifier for the away team.
away_team_location character Away team's team location.
away_team_full_name character Full away team name (e.g. 'Las Vegas Aces').
away_team_color character Away team primary color (hex).
away_score integer Away team score at the time of the play.
away_win integer Away team's win.
away_record character Away win-loss record.

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_broadcasts(), espn_wbb_game_odds(), espn_wbb_game_official_detail(), espn_wbb_game_officials(), espn_wbb_game_play(), espn_wbb_game_play_personnel(), espn_wbb_game_player_box(), espn_wbb_game_powerindex(), espn_wbb_game_predictor(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_rosters(), espn_wbb_game_situation(), espn_wbb_game_team_leaders(), espn_wbb_game_team_linescores(), espn_wbb_game_team_records(), espn_wbb_game_team_roster(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_score(), espn_wbb_game_team_statistics(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_awards(), espn_wbb_player_box(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog(), espn_wbb_player_eventlog_v2(), espn_wbb_player_gamelog(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_splits(), espn_wbb_player_statisticslog(), espn_wbb_player_stats(), espn_wbb_player_stats_v3(), espn_wbb_position(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), 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_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), 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()

Examples

# Get schedule from date 2022-11-15

  try(espn_wbb_scoreboard (season = "20230225"))

Get ESPN WBB Season Awards Index

Description

Returns the list of award IDs given out in a WBB season from sports.core.api.espn.com/v2/sports/basketball/leagues/womens-college-basketball/seasons/{season}/awards. The index only contains IDs and ⁠$ref⁠ URLs — pass an ID to espn_wbb_award() for the award name, description, and winners.

Usage

espn_wbb_season_awards(season = most_recent_wbb_season(), ...)

Arguments

season

Season year (numeric). Defaults to the most recent WBB season.

...

Additional arguments; currently unused.

Value

A tibble with one row per award.

col_name types description
season integer Season year.
award_id character ESPN award identifier.
ref character Full ⁠$ref⁠ URL for the award detail.
league character League slug ("womens-college-basketball").

Author(s)

Saiem Gilani

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_broadcasts(), espn_wbb_game_odds(), espn_wbb_game_official_detail(), espn_wbb_game_officials(), espn_wbb_game_play(), espn_wbb_game_play_personnel(), espn_wbb_game_player_box(), espn_wbb_game_powerindex(), espn_wbb_game_predictor(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_rosters(), espn_wbb_game_situation(), espn_wbb_game_team_leaders(), espn_wbb_game_team_linescores(), espn_wbb_game_team_records(), espn_wbb_game_team_roster(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_score(), espn_wbb_game_team_statistics(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_awards(), espn_wbb_player_box(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog(), espn_wbb_player_eventlog_v2(), espn_wbb_player_gamelog(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_splits(), espn_wbb_player_statisticslog(), espn_wbb_player_stats(), espn_wbb_player_stats_v3(), espn_wbb_position(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), 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_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), 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()

Examples

espn_wbb_season_awards(season = 2024)

Get ESPN WBB Season Group Detail

Description

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.

Usage

espn_wbb_season_group(
  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.

Details

Get ESPN WBB Season Group Detail

Value

A single-row tibble.

col_name types description
league character League slug.
season integer Season year.
season_type integer Season-type id.
group_id character ESPN group id.
uid character ESPN UID string.
name character Full name (e.g. "Eastern Conference").
abbreviation character Short code (e.g. "EAST").
short_name character Short name.
midsize_name character Mid-size display name.
is_conference logical Whether this group is a conference.
slug character URL slug.
parent_ref character ⁠$ref⁠ to parent group (if any).
children_ref character ⁠$ref⁠ to child-groups endpoint.
teams_ref character ⁠$ref⁠ to teams-in-group endpoint.
standings_ref character ⁠$ref⁠ to standings endpoint.

Author(s)

Saiem Gilani

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_broadcasts(), espn_wbb_game_odds(), espn_wbb_game_official_detail(), espn_wbb_game_officials(), espn_wbb_game_play(), espn_wbb_game_play_personnel(), espn_wbb_game_player_box(), espn_wbb_game_powerindex(), espn_wbb_game_predictor(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_rosters(), espn_wbb_game_situation(), espn_wbb_game_team_leaders(), espn_wbb_game_team_linescores(), espn_wbb_game_team_records(), espn_wbb_game_team_roster(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_score(), espn_wbb_game_team_statistics(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_awards(), espn_wbb_player_box(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog(), espn_wbb_player_eventlog_v2(), espn_wbb_player_gamelog(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_splits(), espn_wbb_player_statisticslog(), espn_wbb_player_stats(), espn_wbb_player_stats_v3(), espn_wbb_position(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), 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_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), 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()

Examples

espn_wbb_season_group(group_id = 5, season = 2025)

Get ESPN WBB Season Group Children Index

Description

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

Usage

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

Arguments

group_id

Parent group identifier.

season

Season year. Defaults to most recent WBB season.

season_type

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

...

Additional arguments; currently unused.

Details

Get ESPN WBB Season Group Children Index

Value

A tibble with one row per child group.

col_name types description
league character League slug.
season integer Season year.
season_type integer Season-type id.
parent_group_id character Parent group id (queried).
child_group_id character Child group id.
ref character ⁠$ref⁠ to child group detail.

Author(s)

Saiem Gilani

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_broadcasts(), espn_wbb_game_odds(), espn_wbb_game_official_detail(), espn_wbb_game_officials(), espn_wbb_game_play(), espn_wbb_game_play_personnel(), espn_wbb_game_player_box(), espn_wbb_game_powerindex(), espn_wbb_game_predictor(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_rosters(), espn_wbb_game_situation(), espn_wbb_game_team_leaders(), espn_wbb_game_team_linescores(), espn_wbb_game_team_records(), espn_wbb_game_team_roster(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_score(), espn_wbb_game_team_statistics(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_awards(), espn_wbb_player_box(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog(), espn_wbb_player_eventlog_v2(), espn_wbb_player_gamelog(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_splits(), espn_wbb_player_statisticslog(), espn_wbb_player_stats(), espn_wbb_player_stats_v3(), espn_wbb_position(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_teams(), 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_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), 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()

Examples

espn_wbb_season_group_children(group_id = 5, season = 2025)

Get ESPN WBB Season Group Teams Index

Description

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_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.

Details

Get ESPN WBB Season Group Teams Index

Value

A tibble with one row per team in the group.

col_name types description
league character League slug.
season integer Season year.
season_type integer Season-type id.
group_id character ESPN group id.
team_id character ESPN team id.
ref character ⁠$ref⁠ URL to the team-in-season entry.

Author(s)

Saiem Gilani

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_broadcasts(), espn_wbb_game_odds(), espn_wbb_game_official_detail(), espn_wbb_game_officials(), espn_wbb_game_play(), espn_wbb_game_play_personnel(), espn_wbb_game_player_box(), espn_wbb_game_powerindex(), espn_wbb_game_predictor(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_rosters(), espn_wbb_game_situation(), espn_wbb_game_team_leaders(), espn_wbb_game_team_linescores(), espn_wbb_game_team_records(), espn_wbb_game_team_roster(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_score(), espn_wbb_game_team_statistics(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_awards(), espn_wbb_player_box(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog(), espn_wbb_player_eventlog_v2(), espn_wbb_player_gamelog(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_splits(), espn_wbb_player_statisticslog(), espn_wbb_player_stats(), espn_wbb_player_stats_v3(), espn_wbb_position(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_children(), 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_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), 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()

Examples

espn_wbb_season_group_teams(group_id = 5, season = 2025)

Get ESPN WBB Season Groups Index

Description

Returns the list of group IDs (conferences / divisions) for one (WBB season x season-type) via core-v2 ⁠/seasons/{season}/types/{season_type}/groups⁠.

Usage

espn_wbb_season_groups(
  season = most_recent_wbb_season(),
  season_type = c(2L, 3L),
  ...
)

Arguments

season

Season year. Defaults to most recent WBB season.

season_type

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

...

Additional arguments; currently unused.

Value

A tibble with one row per group.

col_name types description
league character League slug.
season integer Season year.
season_type integer Season-type id.
group_id character ESPN group id.
ref character ⁠$ref⁠ URL for the group detail.

Author(s)

Saiem Gilani

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_broadcasts(), espn_wbb_game_odds(), espn_wbb_game_official_detail(), espn_wbb_game_officials(), espn_wbb_game_play(), espn_wbb_game_play_personnel(), espn_wbb_game_player_box(), espn_wbb_game_powerindex(), espn_wbb_game_predictor(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_rosters(), espn_wbb_game_situation(), espn_wbb_game_team_leaders(), espn_wbb_game_team_linescores(), espn_wbb_game_team_records(), espn_wbb_game_team_roster(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_score(), espn_wbb_game_team_statistics(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_awards(), espn_wbb_player_box(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog(), espn_wbb_player_eventlog_v2(), espn_wbb_player_gamelog(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_splits(), espn_wbb_player_statisticslog(), espn_wbb_player_stats(), espn_wbb_player_stats_v3(), espn_wbb_position(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), 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_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), 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()

Examples

espn_wbb_season_groups(season = 2025)

Get ESPN Women's College Basketball Season Info

Description

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_name types description
year integer 4-digit year.
start_date character Start date (YYYY-MM-DD).
end_date character End date (YYYY-MM-DD).
display_name character Display name.
type_id character Type identifier (numeric).
type_name character Type name.

Types / Athletes / Coaches / Teams / Awards

col_name types description
count integer Count of count.
ref character Ref.

Author(s)

Saiem Gilani

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_broadcasts(), espn_wbb_game_odds(), espn_wbb_game_official_detail(), espn_wbb_game_officials(), espn_wbb_game_play(), espn_wbb_game_play_personnel(), espn_wbb_game_player_box(), espn_wbb_game_powerindex(), espn_wbb_game_predictor(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_rosters(), espn_wbb_game_situation(), espn_wbb_game_team_leaders(), espn_wbb_game_team_linescores(), espn_wbb_game_team_records(), espn_wbb_game_team_roster(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_score(), espn_wbb_game_team_statistics(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_awards(), espn_wbb_player_box(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog(), espn_wbb_player_eventlog_v2(), espn_wbb_player_gamelog(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_splits(), espn_wbb_player_statisticslog(), espn_wbb_player_stats(), espn_wbb_player_stats_v3(), espn_wbb_position(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), espn_wbb_season_groups(), 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_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), 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()

Examples

espn_wbb_season_info(season = 2025)

Get ESPN WBB Season Leaders (Long Format)

Description

Returns the per-category leaderboard for one (WBB season x season-type), in long format. Each row is one (category x rank) entry, e.g. "Points Per Game x rank 1 x LeBron James".

Usage

espn_wbb_season_leaders(
  season = most_recent_wbb_season(),
  season_type = c(2L, 3L),
  ...
)

Arguments

season

Season year. Defaults to most recent WBB season.

season_type

Season-type id (2 = regular (default), 3 = postseason).

...

Additional arguments; currently unused.

Details

Get ESPN WBB Season Leaders (Long Format)

Value

A long tibble with one row per (category x leader).

col_name types description
league character League slug.
season integer Season year.
season_type integer Season-type id.
category_name character Internal category key (e.g. "pointsPerGame").
category_display character Human-readable category name.
category_short character Short display name.
category_abbrev character Stat abbreviation (e.g. "PTS").
rank integer Rank within the category (1 = best).
athlete_id character ESPN athlete id.
team_id character ESPN team id.
display_value character Display-formatted value.
value numeric Numeric leader value.
rel character Comma-joined rel tags from ESPN.
athlete_ref character ⁠$ref⁠ URL to the leader's athlete.
team_ref character ⁠$ref⁠ URL to the leader's team.

Author(s)

Saiem Gilani

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_broadcasts(), espn_wbb_game_odds(), espn_wbb_game_official_detail(), espn_wbb_game_officials(), espn_wbb_game_play(), espn_wbb_game_play_personnel(), espn_wbb_game_player_box(), espn_wbb_game_powerindex(), espn_wbb_game_predictor(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_rosters(), espn_wbb_game_situation(), espn_wbb_game_team_leaders(), espn_wbb_game_team_linescores(), espn_wbb_game_team_records(), espn_wbb_game_team_roster(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_score(), espn_wbb_game_team_statistics(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_awards(), espn_wbb_player_box(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog(), espn_wbb_player_eventlog_v2(), espn_wbb_player_gamelog(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_splits(), espn_wbb_player_statisticslog(), espn_wbb_player_stats(), espn_wbb_player_stats_v3(), espn_wbb_position(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), espn_wbb_season_groups(), espn_wbb_season_info(), 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_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), 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()

Examples

espn_wbb_season_leaders(season = 2025)

Get ESPN WBB Season Ranking Detail

Description

Returns the per-week snapshot index for one ranking source (e.g. AP Top 25). Each row is one weekly snapshot; the ref URL resolves to the actual ranked teams for that (season-type x week) and will be wrapped by a forthcoming espn_LOWERWBB_week_ranking().

Usage

espn_wbb_season_ranking(ranking_id, season = most_recent_wbb_season(), ...)

Arguments

ranking_id

ESPN ranking identifier (character or numeric).

season

Season year. Defaults to most recent WBB season.

...

Additional arguments; currently unused.

Details

Get ESPN WBB Season Ranking Detail

Value

A tibble with one row per weekly snapshot.

col_name types description
league character League slug.
season integer Season year.
ranking_id character ESPN ranking id.
name character Ranking name (e.g. "AP Top 25").
short_name character Short name (e.g. "AP Poll").
type character Ranking type code (e.g. "ap").
season_type integer Season-type id of this snapshot.
week integer Week number of this snapshot.
ref character ⁠$ref⁠ URL for the per-week ranking detail.

Author(s)

Saiem Gilani

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_broadcasts(), espn_wbb_game_odds(), espn_wbb_game_official_detail(), espn_wbb_game_officials(), espn_wbb_game_play(), espn_wbb_game_play_personnel(), espn_wbb_game_player_box(), espn_wbb_game_powerindex(), espn_wbb_game_predictor(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_rosters(), espn_wbb_game_situation(), espn_wbb_game_team_leaders(), espn_wbb_game_team_linescores(), espn_wbb_game_team_records(), espn_wbb_game_team_roster(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_score(), espn_wbb_game_team_statistics(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_awards(), espn_wbb_player_box(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog(), espn_wbb_player_eventlog_v2(), espn_wbb_player_gamelog(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_splits(), espn_wbb_player_statisticslog(), espn_wbb_player_stats(), espn_wbb_player_stats_v3(), espn_wbb_position(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), espn_wbb_season_groups(), espn_wbb_season_info(), espn_wbb_season_leaders(), 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_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), 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()

Examples

espn_wbb_season_ranking(ranking_id = 1, season = 2025)

Get ESPN WBB Season Rankings Index

Description

Returns the index of season-level rankings recorded for one WBB season. Typical sources: AP Top 25 (id 1), Coaches Poll (id 2). Pass an ranking_id to espn_wbb_season_ranking() for the ranked teams.

Usage

espn_wbb_season_rankings(season = most_recent_wbb_season(), ...)

Arguments

season

Season year. Defaults to most recent WBB season.

...

Additional arguments; currently unused.

Details

Get ESPN WBB Season Rankings Index

Value

A tibble with one row per ranking source.

col_name types description
league character League slug.
season integer Season year.
ranking_id character ESPN ranking id.
ref character ⁠$ref⁠ URL for the ranking detail.

Author(s)

Saiem Gilani

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_broadcasts(), espn_wbb_game_odds(), espn_wbb_game_official_detail(), espn_wbb_game_officials(), espn_wbb_game_play(), espn_wbb_game_play_personnel(), espn_wbb_game_player_box(), espn_wbb_game_powerindex(), espn_wbb_game_predictor(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_rosters(), espn_wbb_game_situation(), espn_wbb_game_team_leaders(), espn_wbb_game_team_linescores(), espn_wbb_game_team_records(), espn_wbb_game_team_roster(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_score(), espn_wbb_game_team_statistics(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_awards(), espn_wbb_player_box(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog(), espn_wbb_player_eventlog_v2(), espn_wbb_player_gamelog(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_splits(), espn_wbb_player_statisticslog(), espn_wbb_player_stats(), espn_wbb_player_stats_v3(), espn_wbb_position(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), espn_wbb_season_groups(), espn_wbb_season_info(), espn_wbb_season_leaders(), espn_wbb_season_ranking(), 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_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), 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()

Examples

espn_wbb_season_rankings(season = 2025)

Get ESPN WBB Season-Type Detail

Description

Returns metadata for one season-type within an WBB season: name, abbreviation, start / end dates, and whether it carries groups, standings, or playoff legs.

Usage

espn_wbb_season_type(season_type = 2L, season = most_recent_wbb_season(), ...)

Arguments

season_type

Season-type id (1 = preseason, 2 = regular (default), 3 = postseason, 4 = off-season).

season

Season year. Defaults to most recent WBB season.

...

Additional arguments; currently unused.

Details

Get ESPN WBB Season-Type Detail

Value

A single-row tibble.

col_name types description
league character League slug.
season integer Season year.
season_type integer Season-type id.
type integer Numeric type code.
name character Display name (e.g. "Regular Season").
abbreviation character Short code (e.g. "reg").
year integer Year stamp.
start_date character ISO 8601 start date.
end_date character ISO 8601 end date.
has_groups logical Whether groups exist for this type.
has_standings logical Whether standings exist.
has_legs logical Whether playoff legs exist.
slug character URL slug.
groups_ref character ⁠$ref⁠ to the groups endpoint.
weeks_ref character ⁠$ref⁠ to the weeks endpoint.
leaders_ref character ⁠$ref⁠ to the leaders endpoint.

Author(s)

Saiem Gilani

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_broadcasts(), espn_wbb_game_odds(), espn_wbb_game_official_detail(), espn_wbb_game_officials(), espn_wbb_game_play(), espn_wbb_game_play_personnel(), espn_wbb_game_player_box(), espn_wbb_game_powerindex(), espn_wbb_game_predictor(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_rosters(), espn_wbb_game_situation(), espn_wbb_game_team_leaders(), espn_wbb_game_team_linescores(), espn_wbb_game_team_records(), espn_wbb_game_team_roster(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_score(), espn_wbb_game_team_statistics(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_awards(), espn_wbb_player_box(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog(), espn_wbb_player_eventlog_v2(), espn_wbb_player_gamelog(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_splits(), espn_wbb_player_statisticslog(), espn_wbb_player_stats(), espn_wbb_player_stats_v3(), espn_wbb_position(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), espn_wbb_season_groups(), espn_wbb_season_info(), espn_wbb_season_leaders(), espn_wbb_season_ranking(), espn_wbb_season_rankings(), espn_wbb_season_types(), espn_wbb_season_week(), espn_wbb_season_weeks(), espn_wbb_seasons(), espn_wbb_standings(), espn_wbb_team(), espn_wbb_team_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), 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()

Examples

espn_wbb_season_type(season_type = 2, season = 2025)

Get ESPN WBB Season Types Index

Description

Returns the index of season-type IDs that exist for one WBB season (typically 1 = preseason, 2 = regular, 3 = postseason, 4 = off-season). Pass an ID to espn_wbb_season_type() for the start/end dates and whether that type carries groups, standings, or legs.

Usage

espn_wbb_season_types(season = most_recent_wbb_season(), ...)

Arguments

season

Season year (numeric). Defaults to the most recent WBB season.

...

Additional arguments; currently unused.

Value

A tibble with one row per season type.

col_name types description
league character League slug ("womens-college-basketball").
season integer Season year.
season_type integer Season-type id (1/2/3/4).
ref character ⁠$ref⁠ URL for the type detail.

Author(s)

Saiem Gilani

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_broadcasts(), espn_wbb_game_odds(), espn_wbb_game_official_detail(), espn_wbb_game_officials(), espn_wbb_game_play(), espn_wbb_game_play_personnel(), espn_wbb_game_player_box(), espn_wbb_game_powerindex(), espn_wbb_game_predictor(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_rosters(), espn_wbb_game_situation(), espn_wbb_game_team_leaders(), espn_wbb_game_team_linescores(), espn_wbb_game_team_records(), espn_wbb_game_team_roster(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_score(), espn_wbb_game_team_statistics(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_awards(), espn_wbb_player_box(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog(), espn_wbb_player_eventlog_v2(), espn_wbb_player_gamelog(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_splits(), espn_wbb_player_statisticslog(), espn_wbb_player_stats(), espn_wbb_player_stats_v3(), espn_wbb_position(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), 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_week(), espn_wbb_season_weeks(), espn_wbb_seasons(), espn_wbb_standings(), espn_wbb_team(), espn_wbb_team_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), 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()

Examples

espn_wbb_season_types(season = 2025)

Get ESPN WBB Season-Week Detail

Description

Returns metadata for one week (number, start / end dates, text label, and ⁠$ref⁠ to the per-week rankings endpoint).

Usage

espn_wbb_season_week(
  week,
  season = most_recent_wbb_season(),
  season_type = 2L,
  ...
)

Arguments

week

Week number.

season

Season year. Defaults to most recent WBB season.

season_type

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

...

Additional arguments; currently unused.

Details

Get ESPN WBB Season-Week Detail

Value

A single-row tibble.

col_name types description
league character League slug.
season integer Season year.
season_type integer Season-type id.
week integer Week number.
text character Display label (e.g. "Week 5").
start_date character ISO 8601 week start.
end_date character ISO 8601 week end.
rankings_ref character ⁠$ref⁠ to the per-week rankings endpoint.

Author(s)

Saiem Gilani

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_broadcasts(), espn_wbb_game_odds(), espn_wbb_game_official_detail(), espn_wbb_game_officials(), espn_wbb_game_play(), espn_wbb_game_play_personnel(), espn_wbb_game_player_box(), espn_wbb_game_powerindex(), espn_wbb_game_predictor(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_rosters(), espn_wbb_game_situation(), espn_wbb_game_team_leaders(), espn_wbb_game_team_linescores(), espn_wbb_game_team_records(), espn_wbb_game_team_roster(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_score(), espn_wbb_game_team_statistics(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_awards(), espn_wbb_player_box(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog(), espn_wbb_player_eventlog_v2(), espn_wbb_player_gamelog(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_splits(), espn_wbb_player_statisticslog(), espn_wbb_player_stats(), espn_wbb_player_stats_v3(), espn_wbb_position(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), 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_weeks(), espn_wbb_seasons(), espn_wbb_standings(), espn_wbb_team(), espn_wbb_team_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), 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()

Examples

espn_wbb_season_week(week = 5, season = 2025)

Get ESPN WBB Season Weeks Index

Description

Returns the list of week IDs for one (WBB season x season-type). WBB uses a week structure inherited from ESPN's schema, but week-level rankings are populated only for college (MBB / WBB).

Usage

espn_wbb_season_weeks(
  season = most_recent_wbb_season(),
  season_type = c(2L, 3L),
  ...
)

Arguments

season

Season year. Defaults to most recent WBB season.

season_type

Season-type id (2 = regular (default), 3 = postseason).

...

Additional arguments; currently unused.

Value

A tibble with one row per week.

col_name types description
league character League slug.
season integer Season year.
season_type integer Season-type id.
week integer Week number (1-based).
ref character ⁠$ref⁠ URL for the week detail.

Author(s)

Saiem Gilani

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_broadcasts(), espn_wbb_game_odds(), espn_wbb_game_official_detail(), espn_wbb_game_officials(), espn_wbb_game_play(), espn_wbb_game_play_personnel(), espn_wbb_game_player_box(), espn_wbb_game_powerindex(), espn_wbb_game_predictor(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_rosters(), espn_wbb_game_situation(), espn_wbb_game_team_leaders(), espn_wbb_game_team_linescores(), espn_wbb_game_team_records(), espn_wbb_game_team_roster(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_score(), espn_wbb_game_team_statistics(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_awards(), espn_wbb_player_box(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog(), espn_wbb_player_eventlog_v2(), espn_wbb_player_gamelog(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_splits(), espn_wbb_player_statisticslog(), espn_wbb_player_stats(), espn_wbb_player_stats_v3(), espn_wbb_position(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), 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_seasons(), espn_wbb_standings(), espn_wbb_team(), espn_wbb_team_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), 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()

Examples

espn_wbb_season_weeks(season = 2025)

Get ESPN Women's College Basketball Seasons

Description

Get ESPN Women's College Basketball Seasons

Get ESPN Women's College Basketball Seasons

Usage

espn_wbb_seasons(...)

Arguments

...

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 season.

col_name types description
season integer Season identifier (4-digit year or 'YYYY-YY' string).
start_date character Start date (YYYY-MM-DD).
end_date character End date (YYYY-MM-DD).
display_name character Display name.
season_type_count integer Count of season type.

Author(s)

Saiem Gilani

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_broadcasts(), espn_wbb_game_odds(), espn_wbb_game_official_detail(), espn_wbb_game_officials(), espn_wbb_game_play(), espn_wbb_game_play_personnel(), espn_wbb_game_player_box(), espn_wbb_game_powerindex(), espn_wbb_game_predictor(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_rosters(), espn_wbb_game_situation(), espn_wbb_game_team_leaders(), espn_wbb_game_team_linescores(), espn_wbb_game_team_records(), espn_wbb_game_team_roster(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_score(), espn_wbb_game_team_statistics(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_awards(), espn_wbb_player_box(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog(), espn_wbb_player_eventlog_v2(), espn_wbb_player_gamelog(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_splits(), espn_wbb_player_statisticslog(), espn_wbb_player_stats(), espn_wbb_player_stats_v3(), espn_wbb_position(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), 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_standings(), espn_wbb_team(), espn_wbb_team_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), 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()

Examples

espn_wbb_seasons()

Get ESPN women's college basketball standings

Description

Get ESPN women's college basketball standings

Usage

espn_wbb_standings(year)

Arguments

year

Either numeric or character (YYYY)

Value

Returns a tibble

col_name types description
team_id integer Unique team identifier.
team character Team-side label or team identifier.
avgpointsagainst numeric Avgpointsagainst.
avgpointsfor numeric Avgpointsfor.
gamesbehind numeric Gamesbehind.
leaguewinpercent numeric Leaguewinpercent.
losses numeric Total losses.
playoffseed numeric Playoffseed.
pointsagainst numeric Pointsagainst.
pointsfor numeric Pointsfor.
streak numeric Current streak (e.g. 'W3' for three-game win streak).
winpercent numeric Winpercent.
wins numeric Total wins.
total character Total.
home_avgpointsagainst numeric Home team's avgpointsagainst.
home_avgpointsfor numeric Home team's avgpointsfor.
home_gamesbehind numeric Home team's gamesbehind.
home_leaguewinpercent numeric Home team's leaguewinpercent.
home_losses numeric Home team's losses.
home_playoffseed numeric Home team's playoffseed.
home_pointsagainst numeric Home team's pointsagainst.
home_pointsfor numeric Home team's pointsfor.
home_streak numeric Home team's streak.
home_winpercent numeric Home team's winpercent.
home_wins numeric Home team's wins.
home character Home.
road_avgpointsagainst numeric Road avgpointsagainst.
road_avgpointsfor numeric Road avgpointsfor.
road_gamesbehind numeric Road gamesbehind.
road_leaguewinpercent numeric Road leaguewinpercent.
road_losses numeric Road losses.
road_playoffseed numeric Road playoffseed.
road_pointsagainst numeric Road pointsagainst.
road_pointsfor numeric Road pointsfor.
road_streak numeric Road streak.
road_winpercent numeric Road winpercent.
road_wins numeric Road wins.
road character Road.
vsaprankedteams_avgpointsagainst numeric Vsaprankedteams avgpointsagainst.
vsaprankedteams_avgpointsfor numeric Vsaprankedteams avgpointsfor.
vsaprankedteams_gamesbehind numeric Vsaprankedteams gamesbehind.
vsaprankedteams_leaguewinpercent numeric Vsaprankedteams leaguewinpercent.
vsaprankedteams_losses numeric Vsaprankedteams losses.
vsaprankedteams_playoffseed numeric Vsaprankedteams playoffseed.
vsaprankedteams_pointsagainst numeric Vsaprankedteams pointsagainst.
vsaprankedteams_pointsfor numeric Vsaprankedteams pointsfor.
vsaprankedteams_streak numeric Vsaprankedteams streak.
vsaprankedteams_winpercent numeric Vsaprankedteams winpercent.
vsaprankedteams_wins numeric Vsaprankedteams wins.
vsaprankedteams character Vsaprankedteams.
vsusarankedteams_avgpointsagainst numeric Vsusarankedteams avgpointsagainst.
vsusarankedteams_avgpointsfor numeric Vsusarankedteams avgpointsfor.
vsusarankedteams_gamesbehind numeric Vsusarankedteams gamesbehind.
vsusarankedteams_leaguewinpercent numeric Vsusarankedteams leaguewinpercent.
vsusarankedteams_losses numeric Vsusarankedteams losses.
vsusarankedteams_playoffseed numeric Vsusarankedteams playoffseed.
vsusarankedteams_pointsagainst numeric Vsusarankedteams pointsagainst.
vsusarankedteams_pointsfor numeric Vsusarankedteams pointsfor.
vsusarankedteams_streak numeric Vsusarankedteams streak.
vsusarankedteams_winpercent numeric Vsusarankedteams winpercent.
vsusarankedteams_wins numeric Vsusarankedteams wins.
vsusarankedteams character Vsusarankedteams.
vsconf_avgpointsagainst numeric Vsconf avgpointsagainst.
vsconf_avgpointsfor numeric Vsconf avgpointsfor.
vsconf_gamesbehind numeric Vsconf gamesbehind.
vsconf_leaguewinpercent numeric Vsconf leaguewinpercent.
vsconf_losses numeric Vsconf losses.
vsconf_playoffseed numeric Vsconf playoffseed.
vsconf_pointsagainst numeric Vsconf pointsagainst.
vsconf_pointsfor numeric Vsconf pointsfor.
vsconf_streak numeric Vsconf streak.
vsconf_winpercent numeric Vsconf winpercent.
vsconf_wins numeric Vsconf wins.
vsconf character Vsconf.

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_broadcasts(), espn_wbb_game_odds(), espn_wbb_game_official_detail(), espn_wbb_game_officials(), espn_wbb_game_play(), espn_wbb_game_play_personnel(), espn_wbb_game_player_box(), espn_wbb_game_powerindex(), espn_wbb_game_predictor(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_rosters(), espn_wbb_game_situation(), espn_wbb_game_team_leaders(), espn_wbb_game_team_linescores(), espn_wbb_game_team_records(), espn_wbb_game_team_roster(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_score(), espn_wbb_game_team_statistics(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_awards(), espn_wbb_player_box(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog(), espn_wbb_player_eventlog_v2(), espn_wbb_player_gamelog(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_splits(), espn_wbb_player_statisticslog(), espn_wbb_player_stats(), espn_wbb_player_stats_v3(), espn_wbb_position(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), 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_team(), espn_wbb_team_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), 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()

Examples

try(espn_wbb_standings(2021))

Get ESPN Women's College Basketball Team Detail

Description

Get ESPN Women's College Basketball Team Detail

Get ESPN Women's College Basketball Team Detail

Usage

espn_wbb_team(team_id, season = most_recent_wbb_season(), ...)

Arguments

team_id

ESPN team identifier (character or numeric).

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 data frames: Info, Record, NextEvent, StandingSummary, Coaches.

Info

col_name types description
id character Unique play identifcation number
uid character ESPN UID string (universal identifier).
slug character URL-safe identifier.
abbreviation character Short abbreviation.
display_name character Display name.
short_display_name character Short display name.
name character Display name.
nickname character Team or athlete nickname.
location character Filter results by game location.
color character Primary color (hex without leading '#').
alternate_color character Alternate color (hex without leading '#').
logo character Team or league logo URL.

Record

col_name types description
type character Record type / category.
summary character Summary.
stats list Stats.

NextEvent

col_name types description
id character Unique play identifcation number
date character Date in YYYY-MM-DD format.
name character Display name.
short_name character Short display name.

StandingSummary

col_name types description
standing_summary character Standing summary.

Coaches

col_name types description
id character Unique play identifcation number
first_name character Player's first name.
last_name character Player's last name.
experience integer Years of professional experience.

Author(s)

Saiem Gilani

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_broadcasts(), espn_wbb_game_odds(), espn_wbb_game_official_detail(), espn_wbb_game_officials(), espn_wbb_game_play(), espn_wbb_game_play_personnel(), espn_wbb_game_player_box(), espn_wbb_game_powerindex(), espn_wbb_game_predictor(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_rosters(), espn_wbb_game_situation(), espn_wbb_game_team_leaders(), espn_wbb_game_team_linescores(), espn_wbb_game_team_records(), espn_wbb_game_team_roster(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_score(), espn_wbb_game_team_statistics(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_awards(), espn_wbb_player_box(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog(), espn_wbb_player_eventlog_v2(), espn_wbb_player_gamelog(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_splits(), espn_wbb_player_statisticslog(), espn_wbb_player_stats(), espn_wbb_player_stats_v3(), espn_wbb_position(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), 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_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), 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()

Examples

espn_wbb_team(team_id = "2509", season = 2025)

Get ESPN women's college basketball team box data

Description

Get ESPN women's college basketball team box data

Usage

espn_wbb_team_box(game_id)

Arguments

game_id

Game ID

Value

Returns a team boxscore data frame

Team

col_name types description
game_id integer Unique game identifier.
season integer Season identifier (4-digit year or 'YYYY-YY' string).
season_type integer Season type (1=pre-season, 2=regular season, 3=postseason, 4=off-season for ESPN; or string label for WNBA Stats).
game_date Date Game date (YYYY-MM-DD).
game_date_time POSIXct Game start date/time (ISO 8601).
team_id integer Unique team identifier.
team_uid character ESPN universal team identifier (UID format 's:40~l:...~t:...').
team_slug character URL-safe team identifier (e.g. 'lasvegas-aces' / 'aces').
team_location character Team city or location string.
team_name character Full team display name (e.g. 'Las Vegas Aces').
team_abbreviation character Short team abbreviation (e.g. 'LAS').
team_display_name character Full team display name.
team_short_display_name character Short team display name (e.g. 'Aces').
team_color character Team primary color (hex without leading '#').
team_alternate_color character Team alternate color (hex without leading '#').
team_logo character Team logo image URL.
team_home_away character Team home away.
team_score integer Team's score / final score.
team_winner logical TRUE if the team won this game.
assists integer Total assists.
blocks integer Total blocks.
defensive_rebounds integer Defensive rebounds.
field_goal_pct numeric Field goal percentage (0-1).
field_goals_made integer Field goals made (2-pt + 3-pt).
field_goals_attempted integer Field goal attempts (2-pt + 3-pt).
flagrant_fouls integer Total flagrant fouls.
fouls integer Personal fouls.
free_throw_pct numeric Free throw percentage (0-1).
free_throws_made integer Free throws made.
free_throws_attempted integer Free throw attempts.
largest_lead character Largest lead during the game.
offensive_rebounds integer Offensive rebounds.
steals integer Total steals.
team_turnovers integer Team turnovers (turnovers credited to the team rather than a player).
technical_fouls integer Total technical fouls.
three_point_field_goal_pct numeric Three-point field goal percentage (0-1).
three_point_field_goals_made integer Three-point field goals made.
three_point_field_goals_attempted integer Three-point field goal attempts.
total_rebounds integer Total rebounds.
total_technical_fouls integer Total technical fouls (player + team).
total_turnovers integer Total turnovers (player + team).
turnovers integer Total turnovers.
opponent_team_id integer Unique identifier for the opponent team.
opponent_team_uid character Opponent team uid.
opponent_team_slug character Opponent team slug.
opponent_team_location character Opponent team city / location.
opponent_team_name character Opponent team display name.
opponent_team_abbreviation character Opponent team abbreviation.
opponent_team_display_name character Opponent team full display name.
opponent_team_short_display_name character Opponent team short display name.
opponent_team_color character Opponent team primary color (hex).
opponent_team_alternate_color character Opponent team alternate color (hex).
opponent_team_logo character Opponent team logo URL.
opponent_team_score integer Opponent team's score.

Author(s)

Saiem Gilani

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_broadcasts(), espn_wbb_game_odds(), espn_wbb_game_official_detail(), espn_wbb_game_officials(), espn_wbb_game_play(), espn_wbb_game_play_personnel(), espn_wbb_game_player_box(), espn_wbb_game_powerindex(), espn_wbb_game_predictor(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_rosters(), espn_wbb_game_situation(), espn_wbb_game_team_leaders(), espn_wbb_game_team_linescores(), espn_wbb_game_team_records(), espn_wbb_game_team_roster(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_score(), espn_wbb_game_team_statistics(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_awards(), espn_wbb_player_box(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog(), espn_wbb_player_eventlog_v2(), espn_wbb_player_gamelog(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_splits(), espn_wbb_player_statisticslog(), espn_wbb_player_stats(), espn_wbb_player_stats_v3(), espn_wbb_position(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), 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_leaders(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), 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()

Examples

try(espn_wbb_team_box(game_id = 401276115))

Get ESPN Women's College Basketball Team Injuries

Description

Get ESPN Women's College Basketball Team Injuries

Get ESPN Women's College Basketball Team Injuries

Usage

espn_wbb_team_injuries(team_id, ...)

Arguments

team_id

ESPN team identifier (character or numeric; passed as-is). Use espn_wbb_teams() to look up team IDs. Example: "2509" (UConn).

...

Currently unused; reserved for future argument threading.

Value

Returns a tibble of injury records for the specified WBB team. Returns an empty tibble (zero rows) when the team has no reported injuries.

Injuries

col_name types description
team_id character Unique team identifier.
athlete_id character Unique athlete identifier (ESPN).
athlete_name character Athlete display name (ESPN).
position character Listed roster position (G, F, C, etc.).
status character Status label.
date character Date in YYYY-MM-DD format.
type character Record type / category.
side character Side label (e.g. 'home', 'away', or 'overUnder').
returns_at character Returns at.
short_comment character Short comment.
long_comment character Long-form play / event comment.

Author(s)

Saiem Gilani

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_broadcasts(), espn_wbb_game_odds(), espn_wbb_game_official_detail(), espn_wbb_game_officials(), espn_wbb_game_play(), espn_wbb_game_play_personnel(), espn_wbb_game_player_box(), espn_wbb_game_powerindex(), espn_wbb_game_predictor(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_rosters(), espn_wbb_game_situation(), espn_wbb_game_team_leaders(), espn_wbb_game_team_linescores(), espn_wbb_game_team_records(), espn_wbb_game_team_roster(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_score(), espn_wbb_game_team_statistics(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_awards(), espn_wbb_player_box(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog(), espn_wbb_player_eventlog_v2(), espn_wbb_player_gamelog(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_splits(), espn_wbb_player_statisticslog(), espn_wbb_player_stats(), espn_wbb_player_stats_v3(), espn_wbb_position(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), 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_box(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), 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()

Examples

espn_wbb_team_injuries(team_id = "2509")

Get ESPN Women's College Basketball Team Leaders

Description

Get ESPN Women's College Basketball Team Leaders

Get ESPN Women's College Basketball Team Leaders

Usage

espn_wbb_team_leaders(team_id, season = most_recent_wbb_season(), ...)

Arguments

team_id

ESPN team identifier (character or numeric).

season

Season year (numeric). Defaults to the most recent WBB season.

...

Additional arguments; currently unused.

Value

A single long-format tibble (one row per category-rank-athlete).

col_name types description
team_id character Unique team identifier.
season integer Season identifier (4-digit year or 'YYYY-YY' string).
category character Category label.
display_name character Display name.
athlete_id character Unique athlete identifier (ESPN).
athlete_name character Athlete display name (ESPN).
value numeric Numeric or string value field.
rank integer Whether to include statistical ranks in the returned table.

Author(s)

Saiem Gilani

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_broadcasts(), espn_wbb_game_odds(), espn_wbb_game_official_detail(), espn_wbb_game_officials(), espn_wbb_game_play(), espn_wbb_game_play_personnel(), espn_wbb_game_player_box(), espn_wbb_game_powerindex(), espn_wbb_game_predictor(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_rosters(), espn_wbb_game_situation(), espn_wbb_game_team_leaders(), espn_wbb_game_team_linescores(), espn_wbb_game_team_records(), espn_wbb_game_team_roster(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_score(), espn_wbb_game_team_statistics(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_awards(), espn_wbb_player_box(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog(), espn_wbb_player_eventlog_v2(), espn_wbb_player_gamelog(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_splits(), espn_wbb_player_statisticslog(), espn_wbb_player_stats(), espn_wbb_player_stats_v3(), espn_wbb_position(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), 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_box(), espn_wbb_team_injuries(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), 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()

Examples

espn_wbb_team_leaders(team_id = "2509", season = 2025)

Get ESPN WBB Team News

Description

Get ESPN WBB Team News

Get ESPN Women's College Basketball Team News

Usage

espn_wbb_team_news(team_id, limit = 25)

Arguments

team_id

character or integer. ESPN team ID (e.g. 2509 for UConn).

limit

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

Details

Retrieve ESPN women's college basketball 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).

Value

Returns a tibble of team news articles.

col_name types description
id character Unique play identifcation number
type character Record type / category.
headline character News headline.
description character Long-form description text.
published character Publication timestamp (ISO 8601).
premium logical Premium.
byline character News article byline / author.
link_web character Web link / URL.
league_id character League identifier ('10' = WNBA).

Author(s)

Saiem Gilani

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_broadcasts(), espn_wbb_game_odds(), espn_wbb_game_official_detail(), espn_wbb_game_officials(), espn_wbb_game_play(), espn_wbb_game_play_personnel(), espn_wbb_game_player_box(), espn_wbb_game_powerindex(), espn_wbb_game_predictor(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_rosters(), espn_wbb_game_situation(), espn_wbb_game_team_leaders(), espn_wbb_game_team_linescores(), espn_wbb_game_team_records(), espn_wbb_game_team_roster(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_score(), espn_wbb_game_team_statistics(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_awards(), espn_wbb_player_box(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog(), espn_wbb_player_eventlog_v2(), espn_wbb_player_gamelog(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_splits(), espn_wbb_player_statisticslog(), espn_wbb_player_stats(), espn_wbb_player_stats_v3(), espn_wbb_position(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), 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_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), 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()

Examples

espn_wbb_team_news(team_id = "2509", limit = 5)

Get ESPN WBB Team Record Detail (Long Format)

Description

Returns one team's record detail in long format: one row per stat in the record's stats[] array. Use the record-index endpoint to enumerate available record_id values per team-season (overall / home / away / conference + per-opponent breakdowns).

Usage

espn_wbb_team_record_detail(team_id, season, record_id, season_type = 2L, ...)

Arguments

team_id

ESPN team identifier.

season

Season year (numeric).

record_id

Record identifier (from the record-index endpoint index).

season_type

Integer season type: 1 = preseason, 2 = regular (default), 3 = postseason.

...

Additional arguments; currently unused.

Value

A long tibble.

Author(s)

Saiem Gilani

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_broadcasts(), espn_wbb_game_odds(), espn_wbb_game_official_detail(), espn_wbb_game_officials(), espn_wbb_game_play(), espn_wbb_game_play_personnel(), espn_wbb_game_player_box(), espn_wbb_game_powerindex(), espn_wbb_game_predictor(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_rosters(), espn_wbb_game_situation(), espn_wbb_game_team_leaders(), espn_wbb_game_team_linescores(), espn_wbb_game_team_records(), espn_wbb_game_team_roster(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_score(), espn_wbb_game_team_statistics(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_awards(), espn_wbb_player_box(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog(), espn_wbb_player_eventlog_v2(), espn_wbb_player_gamelog(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_splits(), espn_wbb_player_statisticslog(), espn_wbb_player_stats(), espn_wbb_player_stats_v3(), espn_wbb_position(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), 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_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_roster(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), 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()

Examples

espn_wbb_team_record_detail(team_id = 2509, season = 2024, record_id = 0)

Get ESPN Women's College Basketball Team Roster

Description

Get ESPN Women's College Basketball Team Roster

Get ESPN Women's College Basketball Team Roster

Usage

espn_wbb_team_roster(team_id, season = most_recent_wbb_season(), ...)

Arguments

team_id

ESPN team identifier (character or numeric).

season

Season year (numeric). Defaults to the most recent WBB season.

...

Additional arguments; currently unused.

Value

A single tibble with one row per athlete.

col_name types description
athlete_id character Unique athlete identifier (ESPN).
full_name character Player's full name.
jersey character Jersey number worn by the player.
position_abbrev character Abbreviation for position.
position_name character Listed roster position ('Guard', 'Forward', 'Center').
height character Player height (string e.g. '6-2' or inches).
weight character Player weight in pounds.
age character Player age (in years).
birth_date character Date of birth (YYYY-MM-DD).
birth_place character Place of birth.
headshot character Headshot image URL.
link_web character Web link / URL.
status character Status label.
team_id character Unique team identifier.
season integer Season identifier (4-digit year or 'YYYY-YY' string).

Author(s)

Saiem Gilani

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_broadcasts(), espn_wbb_game_odds(), espn_wbb_game_official_detail(), espn_wbb_game_officials(), espn_wbb_game_play(), espn_wbb_game_play_personnel(), espn_wbb_game_player_box(), espn_wbb_game_powerindex(), espn_wbb_game_predictor(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_rosters(), espn_wbb_game_situation(), espn_wbb_game_team_leaders(), espn_wbb_game_team_linescores(), espn_wbb_game_team_records(), espn_wbb_game_team_roster(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_score(), espn_wbb_game_team_statistics(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_awards(), espn_wbb_player_box(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog(), espn_wbb_player_eventlog_v2(), espn_wbb_player_gamelog(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_splits(), espn_wbb_player_statisticslog(), espn_wbb_player_stats(), espn_wbb_player_stats_v3(), espn_wbb_position(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), 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_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), 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()

Examples

espn_wbb_team_roster(team_id = "2509", season = 2025)

Get ESPN Women's College Basketball Team Schedule

Description

Get ESPN Women's College Basketball Team Schedule

Get ESPN Women's College Basketball Team Schedule

Usage

espn_wbb_team_schedule(
  team_id,
  season = most_recent_wbb_season(),
  season_type = 2,
  ...
)

Arguments

team_id

ESPN team identifier (character or numeric).

season

Season year (numeric). Defaults to the most recent WBB season.

season_type

Integer season type: 1 = preseason, 2 = regular (default), 3 = postseason.

...

Additional arguments; currently unused.

Value

A single tibble with one row per event.

col_name types description
event_id character Unique event / game identifier (ESPN).
season integer Season identifier (4-digit year or 'YYYY-YY' string).
season_type integer Season type (1=pre-season, 2=regular season, 3=postseason, 4=off-season for ESPN; or string label for WNBA Stats).
week integer Week number within the season.
date character Date in YYYY-MM-DD format.
name character Display name.
short_name character Short display name.
opponent_id character Unique identifier for opponent.
opponent_abbrev character Abbreviation for opponent.
home_away character Game venue label ('home' or 'away').
neutral_site logical Neutral site.
conference_competition logical Conference competition.
venue_id character Unique venue identifier.
venue_name character Venue name.
venue_city character Venue city.
venue_state character Venue state / region.
broadcast character Broadcast information string.
result character Result.
team_score character Team's score / final score.
opponent_score character Opponent score.
winner logical Winner.

Author(s)

Saiem Gilani

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_broadcasts(), espn_wbb_game_odds(), espn_wbb_game_official_detail(), espn_wbb_game_officials(), espn_wbb_game_play(), espn_wbb_game_play_personnel(), espn_wbb_game_player_box(), espn_wbb_game_powerindex(), espn_wbb_game_predictor(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_rosters(), espn_wbb_game_situation(), espn_wbb_game_team_leaders(), espn_wbb_game_team_linescores(), espn_wbb_game_team_records(), espn_wbb_game_team_roster(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_score(), espn_wbb_game_team_statistics(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_awards(), espn_wbb_player_box(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog(), espn_wbb_player_eventlog_v2(), espn_wbb_player_gamelog(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_splits(), espn_wbb_player_statisticslog(), espn_wbb_player_stats(), espn_wbb_player_stats_v3(), espn_wbb_position(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), 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_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), espn_wbb_team_season_profile(), 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()

Examples

espn_wbb_team_schedule(team_id = "2509", season = 2025)

Get ESPN WBB Team-in-Season Profile

Description

Era-correct team identity for a women's college basketball program in a specific season, plus the available ⁠$ref⁠ URLs for deeper resources (record, statistics, leaders, athletes/roster, coaches, college, etc.). Backed by the core-v2 endpoint sports.core.api.espn.com/v2/sports/basketball/leagues/womens-college-basketball/seasons/{season}/teams/{team_id}.

Historical depth goes back to 1982 at ESPN (NCAA-tournament-era forward). Older seasons return fewer ⁠$ref⁠ keys; missing refs become NA.

Usage

espn_wbb_team_season_profile(team_id, season = most_recent_wbb_season(), ...)

Arguments

team_id

ESPN team identifier (character or numeric).

season

Season year (numeric). Defaults to the most recent WBB season.

...

Additional arguments; currently unused.

Value

A single-row tibble with team identity scalars and ⁠_ref⁠ URL columns. Selected columns:

col_name types description
id character ESPN team identifier.
guid character Stable cross-league team GUID.
uid character ESPN UID string.
slug character URL-safe identifier.
location character School/program location (e.g. "UConn").
name character Team name (e.g. "Huskies").
nickname character Common nickname (often same as location).
abbreviation character Short abbreviation (e.g. "CONN").
display_name character Full display name.
short_display_name character Short display name.
color character Primary color (hex, no leading '#').
alternate_color character Alternate color (hex, no leading '#').
is_active logical Whether the team was active in this season.
season integer Season year.
logo character Primary logo URL.
logo_dark character Dark-mode logo URL.
record_ref character ⁠$ref⁠ to team record resource.
statistics_ref character ⁠$ref⁠ to team statistics resource.
athletes_ref character ⁠$ref⁠ to team roster resource (college-only).
college_ref character ⁠$ref⁠ to college (institution) resource.
coaches_ref character ⁠$ref⁠ to team coaches resource.
franchise_ref character ⁠$ref⁠ to franchise resource.

Author(s)

Saiem Gilani

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_broadcasts(), espn_wbb_game_odds(), espn_wbb_game_official_detail(), espn_wbb_game_officials(), espn_wbb_game_play(), espn_wbb_game_play_personnel(), espn_wbb_game_player_box(), espn_wbb_game_powerindex(), espn_wbb_game_predictor(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_rosters(), espn_wbb_game_situation(), espn_wbb_game_team_leaders(), espn_wbb_game_team_linescores(), espn_wbb_game_team_records(), espn_wbb_game_team_roster(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_score(), espn_wbb_game_team_statistics(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_awards(), espn_wbb_player_box(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog(), espn_wbb_player_eventlog_v2(), espn_wbb_player_gamelog(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_splits(), espn_wbb_player_statisticslog(), espn_wbb_player_stats(), espn_wbb_player_stats_v3(), espn_wbb_position(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), 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_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), 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()

Examples

espn_wbb_team_season_profile(team_id = "2509", season = 2025)

Get ESPN WBB Team Roster (Per-Season, core-v2)

Description

Returns the per-season team roster as a tibble of athlete IDs from seasons/{y}/teams/{id}/athletes. Distinct from espn_wbb_team_roster() which targets a site-v2 endpoint optimized for the current season; this core-v2 variant is era-correct and available back to ESPN's earliest season for each league.

Usage

espn_wbb_team_season_roster(team_id, season = most_recent_wbb_season(), ...)

Arguments

team_id

ESPN team identifier.

season

Season year. Defaults to most recent WBB season.

...

Additional arguments; currently unused.

Details

Get ESPN WBB Team Roster (Per-Season, core-v2)

Value

A tibble with one row per athlete on the season roster.

col_name types description
league character League slug.
team_id character ESPN team id.
season integer Season year.
athlete_id character ESPN athlete id.
ref character ⁠$ref⁠ URL to athlete-in-season detail.

Author(s)

Saiem Gilani

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_broadcasts(), espn_wbb_game_odds(), espn_wbb_game_official_detail(), espn_wbb_game_officials(), espn_wbb_game_play(), espn_wbb_game_play_personnel(), espn_wbb_game_player_box(), espn_wbb_game_powerindex(), espn_wbb_game_predictor(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_rosters(), espn_wbb_game_situation(), espn_wbb_game_team_leaders(), espn_wbb_game_team_linescores(), espn_wbb_game_team_records(), espn_wbb_game_team_roster(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_score(), espn_wbb_game_team_statistics(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_awards(), espn_wbb_player_box(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog(), espn_wbb_player_eventlog_v2(), espn_wbb_player_gamelog(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_splits(), espn_wbb_player_statisticslog(), espn_wbb_player_stats(), espn_wbb_player_stats_v3(), espn_wbb_position(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), 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_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), 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()

Examples

espn_wbb_team_season_roster(team_id = 2509, season = 2025)

Get ESPN WBB Team Season Statistics (Long Format with Rank)

Description

Returns the full team-season-type statistics sheet for one WBB team in long format: one row per (category x stat). Each row carries the team's league rank for that stat where ESPN provides it (rank + rank_display_value). Complements W-L records (not directly wrapped for WBB) with the full stat package.

Usage

espn_wbb_team_season_statistics(
  team_id,
  season = most_recent_wbb_season(),
  season_type = 2L,
  ...
)

Arguments

team_id

ESPN team identifier.

season

Season year (numeric). Defaults to the most recent WBB season.

season_type

Integer season type: 1 = preseason, 2 = regular (default), 3 = postseason.

...

Additional arguments; currently unused.

Value

A long tibble with one row per (category x stat).

Author(s)

Saiem Gilani

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_broadcasts(), espn_wbb_game_odds(), espn_wbb_game_official_detail(), espn_wbb_game_officials(), espn_wbb_game_play(), espn_wbb_game_play_personnel(), espn_wbb_game_player_box(), espn_wbb_game_powerindex(), espn_wbb_game_predictor(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_rosters(), espn_wbb_game_situation(), espn_wbb_game_team_leaders(), espn_wbb_game_team_linescores(), espn_wbb_game_team_records(), espn_wbb_game_team_roster(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_score(), espn_wbb_game_team_statistics(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_awards(), espn_wbb_player_box(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog(), espn_wbb_player_eventlog_v2(), espn_wbb_player_gamelog(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_splits(), espn_wbb_player_statisticslog(), espn_wbb_player_stats(), espn_wbb_player_stats_v3(), espn_wbb_position(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), 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_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), espn_wbb_team_season_roster(), 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()

Examples

espn_wbb_team_season_statistics(team_id = 2509, season = 2024)

Get ESPN women's college basketball team stats data

Description

Get ESPN women's college basketball team stats data

Usage

espn_wbb_team_stats(team_id, year, season_type = "regular", total = FALSE)

Arguments

team_id

Team ID

year

Year

season_type

(character, default: regular): Season type - regular or postseason

total

(boolean, default: FALSE): Totals

Value

Returns a tibble with the team stats data

col_name types description
team_id integer Unique team identifier.
team_guid character ESPN team GUID.
team_uid character ESPN universal team identifier (UID format 's:40~l:...~t:...').
team_sdr integer ESPN team SDR identifier.
team_slug character URL-safe team identifier (e.g. 'lasvegas-aces' / 'aces').
team_location character Team city or location string.
team_name character Full team display name (e.g. 'Las Vegas Aces').
team_nickname character Team nickname.
team_abbreviation character Short team abbreviation (e.g. 'LAS').
team_display_name character Full team display name.
team_short_display_name character Short team display name (e.g. 'Aces').
team_color character Team primary color (hex without leading '#').
team_alternate_color character Team alternate color (hex without leading '#').
team_is_active logical TRUE if the team is currently active.
team_is_all_star logical TRUE if the row represents an All-Star team.
logo_href character Team or league logo URL.
logo_dark_href character Logo URL for dark backgrounds.
defensive_blocks numeric Short for blocked shot, number of times when a defensive player legally deflects a field goal attempt from an offensive player.
defensive_defensive_rebounds numeric The number of times when the defense obtains the possession of the ball after a missed shot by the offense.
defensive_steals numeric The number of times a defensive player forced a turnover by intercepting or deflecting a pass or a dribble of an offensive player.
defensive_turnover_points numeric The amount of points resulting from the possession following a turnover.
defensive_avg_defensive_rebounds numeric The average defensive rebounds per game.
defensive_avg_blocks numeric The average blocks per game.
defensive_avg_steals numeric The average steals per game.
general_disqualifications numeric The number of times a player reached the foul limit.
general_flagrant_fouls numeric The number of fouls that the officials thought were unnecessary or excessive.
general_fouls numeric The number of times a player had illegal contact with the opponent.
general_ejections numeric The number of times a player or coach is removed from the game as a result of a serious offense.
general_technical_fouls numeric The number of times an player or coach was called for a technical foul (unsportsmanlike conduct or violations).
general_rebounds numeric The total number of rebounds (offensive and defensive).
general_minutes numeric The total number of minutes played.
general_avg_minutes numeric The average number of minutes per game.
general_fantasy_rating numeric The Fantasy Rating of a player.
general_avg_rebounds numeric The average rebounds per game.
general_avg_fouls numeric The average fouls committed per game.
general_avg_flagrant_fouls numeric The average number of flagrant fouls per game.
general_avg_technical_fouls numeric The average number of technical fouls per game.
general_avg_ejections numeric The average ejections per game.
general_avg_disqualifications numeric The average number of disqualifications per game.
general_assist_turnover_ratio numeric The average number of assists a player or team records per turnover.
general_steal_foul_ratio numeric The average number of steals a player or team records per foul committed.
general_block_foul_ratio numeric The average number of blocks a player or record per foul committed.
general_avg_team_rebounds numeric The average number of rebounds for a team per game.
general_total_rebounds numeric The total number of rebounds for a team or player.
general_total_technical_fouls numeric The total number of technical fouls for a team or player.
general_team_assist_turnover_ratio numeric The number of assists per turnover for a team.
general_team_rebounds numeric The total number of rebounds for a team.
general_steal_turnover_ratio numeric The number of steals per turnover.
general_games_played numeric Games Played.
general_games_started numeric The number of games started by an athlete.
general_double_double numeric The number of times double digit values were accumulated in 2 of the following categories: points, rebounds, assists, steals, and blocked shots.
general_triple_double numeric The number of times double digit values were accumulated in 3 of the following categories: points, rebounds, assists, steals, and blocked shots.
offensive_assists numeric The number of times a player who passes the ball to a teammate in a way that leads to a score by field goal, meaning that he or she was "assisting" in the basket. There is some judgment involved in deciding whether a passer should be credited with an assist.
offensive_field_goals numeric Field Goal makes and attempts.
offensive_field_goals_attempted numeric The number of times a 2pt field goal was attempted.
offensive_field_goals_made numeric The number of times a 2pt field goal was made.
offensive_field_goal_pct numeric The ratio of field goals made to field goals attempted: FGM / FGA.
offensive_free_throws numeric Free Throw makes and attempts.
offensive_free_throw_pct numeric The ratio of free throws made to free throws attempted: FTM / FTA.
offensive_free_throws_attempted numeric The number of times a free throw was attempted.
offensive_free_throws_made numeric The number of times a free throw was made.
offensive_offensive_rebounds numeric The number of times when the offense obtains the possession of the ball after a missed shot.
offensive_points numeric The number of points scored.
offensive_turnovers numeric The number of times a player loses possession to the other team.
offensive_three_point_field_goals_attempted numeric The number of times a 3pt field goal was attempted.
offensive_three_point_field_goals_made numeric The number of times a 3pt field goal was made.
offensive_team_turnovers numeric The number of turnovers for the team.
offensive_total_turnovers numeric The number of turnovers plus team turnovers for the team.
offensive_fast_break_points numeric The number of points scored on fast breaks.
offensive_avg_field_goals_made numeric The average field goals made per game.
offensive_avg_field_goals_attempted numeric The average field goals attempted per game.
offensive_avg_three_point_field_goals_made numeric The average three point field goals made per game.
offensive_avg_three_point_field_goals_attempted numeric The average three point field goals attempted per game.
offensive_avg_free_throws_made numeric The average free throw shots made per game.
offensive_avg_free_throws_attempted numeric The average free throw shots attempted per game.
offensive_avg_points numeric The average number of points scored per game.
offensive_avg_offensive_rebounds numeric The average offensive rebounds per game.
offensive_avg_assists numeric The average assists per game.
offensive_avg_turnovers numeric The average turnovers committed per game.
offensive_offensive_rebound_pct numeric The percentage of the number of times they obtain the possession of the ball after a missed shot.
offensive_estimated_possessions numeric An estimation of the number of possessions for a team or player.
offensive_avg_estimated_possessions numeric The average number of estimated possessions per game for a team or player.
offensive_points_per_estimated_possessions numeric The number of points per estimated possession for a team or player.
offensive_avg_team_turnovers numeric The average number of turnovers for a team per game.
offensive_avg_total_turnovers numeric The average number of total turnovers for a team per game.
offensive_three_point_field_goal_pct numeric The ratio of 3pt field goals made to 3pt field goals attempted: 3PM / 3PA.
offensive_two_point_field_goals_made numeric The number of 2-point field goals made for a team or player.
offensive_two_point_field_goals_attempted numeric The number of 2-point field goals attempted for a team or player.
offensive_avg_two_point_field_goals_made numeric The number of 2-point field goals made per game for a team or player.
offensive_avg_two_point_field_goals_attempted numeric The number of 2-point field goals attempted per game for a team or player.
offensive_two_point_field_goal_pct numeric The percentage of 2-points fields goals made by a team or player.
offensive_shooting_efficiency numeric The efficiency with which a team or player shoots the basketball.
offensive_scoring_efficiency numeric The efficiency with which a team or player scores the basketball.

Author(s)

Saiem Gilani

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_broadcasts(), espn_wbb_game_odds(), espn_wbb_game_official_detail(), espn_wbb_game_officials(), espn_wbb_game_play(), espn_wbb_game_play_personnel(), espn_wbb_game_player_box(), espn_wbb_game_powerindex(), espn_wbb_game_predictor(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_rosters(), espn_wbb_game_situation(), espn_wbb_game_team_leaders(), espn_wbb_game_team_linescores(), espn_wbb_game_team_records(), espn_wbb_game_team_roster(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_score(), espn_wbb_game_team_statistics(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_awards(), espn_wbb_player_box(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog(), espn_wbb_player_eventlog_v2(), espn_wbb_player_gamelog(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_splits(), espn_wbb_player_statisticslog(), espn_wbb_player_stats(), espn_wbb_player_stats_v3(), espn_wbb_position(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), 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_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), espn_wbb_team_season_roster(), espn_wbb_team_season_statistics(), 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()

Examples

try(espn_wbb_team_stats(team_id = 2509, year = 2020))

Get ESPN women's college basketball team names and ids

Description

Get ESPN women's college basketball team names and ids

Usage

espn_wbb_teams(year = most_recent_wbb_season())

Arguments

year

Either numeric or character (YYYY)

Value

Returns a teams infomation data frame

col_name types description
team_id integer Unique team identifier.
abbreviation character Short abbreviation.
display_name character Display name.
short_name character Short display name.
mascot character Team mascot.
nickname character Team or athlete nickname.
team character Team-side label or team identifier.
color character Primary color (hex without leading '#').
alternate_color character Alternate color (hex without leading '#').
logo character Team or league logo URL.
logo_dark character Logo dark.
href character Link / page URL.
conference_url character URL for conference.
group_id integer Group identifier (e.g. conference group_id).
conference_short_name character Conference short name (e.g. 'ACC').
conference_uid character ESPN universal conference identifier.
conference_name character Full conference name.
conference_logo character Logo image URL for conference.
parent_group_id integer Unique identifier for parent group.
conference_id integer Conference identifier.

Author(s)

Saiem Gilani

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_broadcasts(), espn_wbb_game_odds(), espn_wbb_game_official_detail(), espn_wbb_game_officials(), espn_wbb_game_play(), espn_wbb_game_play_personnel(), espn_wbb_game_player_box(), espn_wbb_game_powerindex(), espn_wbb_game_predictor(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_rosters(), espn_wbb_game_situation(), espn_wbb_game_team_leaders(), espn_wbb_game_team_linescores(), espn_wbb_game_team_records(), espn_wbb_game_team_roster(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_score(), espn_wbb_game_team_statistics(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_awards(), espn_wbb_player_box(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog(), espn_wbb_player_eventlog_v2(), espn_wbb_player_gamelog(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_splits(), espn_wbb_player_statisticslog(), espn_wbb_player_stats(), espn_wbb_player_stats_v3(), espn_wbb_position(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), 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_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), espn_wbb_team_season_roster(), espn_wbb_team_season_statistics(), espn_wbb_team_stats(), 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()

Examples

try(espn_wbb_teams())

Get ESPN WBB Tournament Detail

Description

Returns metadata for a single WBB tournament plus the ⁠$ref⁠ URL for the tournament's seasons list. Tournament IDs of interest include the NCAA Tournament and WNIT (resolve via espn_wbb_tournaments()).

Usage

espn_wbb_tournament(tournament_id, ...)

Arguments

tournament_id

ESPN tournament identifier.

...

Additional arguments; currently unused.

Value

A single-row tibble.

col_name types description
tournament_id character ESPN tournament identifier.
display_name character Human-readable tournament name.
seasons_ref character ⁠$ref⁠ to the seasons-list endpoint.
league character League slug.

Author(s)

Saiem Gilani

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_broadcasts(), espn_wbb_game_odds(), espn_wbb_game_official_detail(), espn_wbb_game_officials(), espn_wbb_game_play(), espn_wbb_game_play_personnel(), espn_wbb_game_player_box(), espn_wbb_game_powerindex(), espn_wbb_game_predictor(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_rosters(), espn_wbb_game_situation(), espn_wbb_game_team_leaders(), espn_wbb_game_team_linescores(), espn_wbb_game_team_records(), espn_wbb_game_team_roster(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_score(), espn_wbb_game_team_statistics(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_awards(), espn_wbb_player_box(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog(), espn_wbb_player_eventlog_v2(), espn_wbb_player_gamelog(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_splits(), espn_wbb_player_statisticslog(), espn_wbb_player_stats(), espn_wbb_player_stats_v3(), espn_wbb_position(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), 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_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), espn_wbb_team_season_roster(), espn_wbb_team_season_statistics(), espn_wbb_team_stats(), espn_wbb_teams(), espn_wbb_tournament_season(), espn_wbb_tournament_seasons(), espn_wbb_tournaments(), espn_wbb_venues(), espn_wbb_week_ranking(), espn_wbb_week_rankings()

Examples

espn_wbb_tournament(tournament_id = 3)

Get ESPN WBB Tournament Season Detail

Description

Returns single-row detail for one (tournament, season) pair: id, display name, number of rounds, and ⁠$ref⁠s to the season + bracketology resources. Use espn_wbb_tournament_seasons() to enumerate valid (tournament_id, season) pairs.

Usage

espn_wbb_tournament_season(tournament_id, season, ...)

Arguments

tournament_id

ESPN tournament identifier.

season

Season year (numeric).

...

Additional arguments; currently unused.

Value

A single-row tibble.

Author(s)

Saiem Gilani

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_broadcasts(), espn_wbb_game_odds(), espn_wbb_game_official_detail(), espn_wbb_game_officials(), espn_wbb_game_play(), espn_wbb_game_play_personnel(), espn_wbb_game_player_box(), espn_wbb_game_powerindex(), espn_wbb_game_predictor(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_rosters(), espn_wbb_game_situation(), espn_wbb_game_team_leaders(), espn_wbb_game_team_linescores(), espn_wbb_game_team_records(), espn_wbb_game_team_roster(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_score(), espn_wbb_game_team_statistics(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_awards(), espn_wbb_player_box(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog(), espn_wbb_player_eventlog_v2(), espn_wbb_player_gamelog(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_splits(), espn_wbb_player_statisticslog(), espn_wbb_player_stats(), espn_wbb_player_stats_v3(), espn_wbb_position(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), 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_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), espn_wbb_team_season_roster(), espn_wbb_team_season_statistics(), espn_wbb_team_stats(), espn_wbb_teams(), espn_wbb_tournament(), espn_wbb_tournament_seasons(), espn_wbb_tournaments(), espn_wbb_venues(), espn_wbb_week_ranking(), espn_wbb_week_rankings()

Examples

espn_wbb_tournament_season(tournament_id = 3, season = 2024)

Get ESPN WBB Tournament Seasons List

Description

Returns the seasons in which a given WBB tournament was held.

Usage

espn_wbb_tournament_seasons(tournament_id, ...)

Arguments

tournament_id

ESPN tournament identifier.

...

Additional arguments; currently unused.

Value

A tibble with one row per season.

col_name types description
league character League slug.
tournament_id character ESPN tournament identifier.
season integer Season year.
ref character Full ⁠$ref⁠ URL for that season.

Author(s)

Saiem Gilani

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_broadcasts(), espn_wbb_game_odds(), espn_wbb_game_official_detail(), espn_wbb_game_officials(), espn_wbb_game_play(), espn_wbb_game_play_personnel(), espn_wbb_game_player_box(), espn_wbb_game_powerindex(), espn_wbb_game_predictor(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_rosters(), espn_wbb_game_situation(), espn_wbb_game_team_leaders(), espn_wbb_game_team_linescores(), espn_wbb_game_team_records(), espn_wbb_game_team_roster(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_score(), espn_wbb_game_team_statistics(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_awards(), espn_wbb_player_box(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog(), espn_wbb_player_eventlog_v2(), espn_wbb_player_gamelog(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_splits(), espn_wbb_player_statisticslog(), espn_wbb_player_stats(), espn_wbb_player_stats_v3(), espn_wbb_position(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), 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_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), 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_tournaments(), espn_wbb_venues(), espn_wbb_week_ranking(), espn_wbb_week_rankings()

Examples

espn_wbb_tournament_seasons(tournament_id = 3)

Get ESPN WBB Tournaments Index

Description

Returns the index of women's college basketball tournaments tracked by ESPN — including the NCAA Tournament, WNIT, conference tournaments, and other in-season events. Pass an ID to espn_wbb_tournament() for the human-readable name and seasons-list ref.

Note: ESPN does not expose a tournaments endpoint for the WNBA.

Usage

espn_wbb_tournaments(...)

Arguments

...

Additional arguments; currently unused.

Value

A tibble with one row per tournament.

col_name types description
tournament_id character ESPN tournament identifier.
ref character Full ⁠$ref⁠ URL for the detail.
league character League slug ("womens-college-basketball").

Author(s)

Saiem Gilani

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_broadcasts(), espn_wbb_game_odds(), espn_wbb_game_official_detail(), espn_wbb_game_officials(), espn_wbb_game_play(), espn_wbb_game_play_personnel(), espn_wbb_game_player_box(), espn_wbb_game_powerindex(), espn_wbb_game_predictor(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_rosters(), espn_wbb_game_situation(), espn_wbb_game_team_leaders(), espn_wbb_game_team_linescores(), espn_wbb_game_team_records(), espn_wbb_game_team_roster(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_score(), espn_wbb_game_team_statistics(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_awards(), espn_wbb_player_box(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog(), espn_wbb_player_eventlog_v2(), espn_wbb_player_gamelog(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_splits(), espn_wbb_player_statisticslog(), espn_wbb_player_stats(), espn_wbb_player_stats_v3(), espn_wbb_position(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), 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_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), 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_venues(), espn_wbb_week_ranking(), espn_wbb_week_rankings()

Examples

espn_wbb_tournaments()

Get ESPN Women's College Basketball Venues

Description

Get ESPN Women's College Basketball Venues

Get ESPN Women's College Basketball Venues

Usage

espn_wbb_venues(...)

Arguments

...

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 venue.

col_name types description
venue_id character Unique venue identifier.
name character Display name.
full_name character Player's full name.
address_city character Address city.
address_state character Address state.
capacity integer Capacity.
indoor logical Indoor.
grass logical Grass.
images_url character URL for images.

Author(s)

Saiem Gilani

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_broadcasts(), espn_wbb_game_odds(), espn_wbb_game_official_detail(), espn_wbb_game_officials(), espn_wbb_game_play(), espn_wbb_game_play_personnel(), espn_wbb_game_player_box(), espn_wbb_game_powerindex(), espn_wbb_game_predictor(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_rosters(), espn_wbb_game_situation(), espn_wbb_game_team_leaders(), espn_wbb_game_team_linescores(), espn_wbb_game_team_records(), espn_wbb_game_team_roster(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_score(), espn_wbb_game_team_statistics(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_awards(), espn_wbb_player_box(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog(), espn_wbb_player_eventlog_v2(), espn_wbb_player_gamelog(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_splits(), espn_wbb_player_statisticslog(), espn_wbb_player_stats(), espn_wbb_player_stats_v3(), espn_wbb_position(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), 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_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), 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_week_ranking(), espn_wbb_week_rankings()

Examples

espn_wbb_venues()

Get ESPN WBB Per-Week Ranking Detail

Description

Returns the long-format ranked teams for one (season x season-type x week x ranking-source). Typically 25 rows for WBB (AP Top 25).

Usage

espn_wbb_week_ranking(
  ranking_id,
  week,
  season = most_recent_wbb_season(),
  season_type = 2L,
  ...
)

Arguments

ranking_id

Ranking source id (1 = AP, 2 = Coaches, etc.).

week

Week number.

season

Season year. Defaults to most recent WBB season.

season_type

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

...

Additional arguments; currently unused.

Details

Get ESPN WBB Per-Week Ranking Detail

Value

A tibble with one row per ranked team (typically 25).

col_name types description
league character League slug.
season integer Season year.
season_type integer Season-type id.
week integer Week number.
ranking_id character ESPN ranking id.
name character Ranking name (e.g. "AP Top 25").
short_name character Short name.
type character Ranking type code.
headline character Full headline.
date character Date of the ranking.
current integer Current rank.
previous integer Previous-week rank.
points numeric Voting points.
first_place_votes integer First-place vote count.
trend character Trend indicator (e.g. "+3", "-2", "-").
record_summary character Team's record at time of poll (e.g. "20-2").
team_id character ESPN team id.
team_ref character ⁠$ref⁠ to the team-in-season resource.
last_updated character Last-updated timestamp.

Author(s)

Saiem Gilani

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_broadcasts(), espn_wbb_game_odds(), espn_wbb_game_official_detail(), espn_wbb_game_officials(), espn_wbb_game_play(), espn_wbb_game_play_personnel(), espn_wbb_game_player_box(), espn_wbb_game_powerindex(), espn_wbb_game_predictor(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_rosters(), espn_wbb_game_situation(), espn_wbb_game_team_leaders(), espn_wbb_game_team_linescores(), espn_wbb_game_team_records(), espn_wbb_game_team_roster(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_score(), espn_wbb_game_team_statistics(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_awards(), espn_wbb_player_box(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog(), espn_wbb_player_eventlog_v2(), espn_wbb_player_gamelog(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_splits(), espn_wbb_player_statisticslog(), espn_wbb_player_stats(), espn_wbb_player_stats_v3(), espn_wbb_position(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), 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_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), 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_rankings()

Examples

espn_wbb_week_ranking(ranking_id = 1, week = 5, season = 2025)

Get ESPN WBB Per-Week Rankings Index

Description

Returns the index of ranking sources available for one (WBB season x season-type x week). Typical sources: AP Top 25 (id 1), Coaches Poll (id 2). Pass an id to espn_wbb_week_ranking() for the ranked teams.

Usage

espn_wbb_week_rankings(
  week,
  season = most_recent_wbb_season(),
  season_type = 2L,
  ...
)

Arguments

week

Week number.

season

Season year. Defaults to most recent WBB season.

season_type

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

...

Additional arguments; currently unused.

Details

Get ESPN WBB Per-Week Rankings Index

Value

A tibble with one row per ranking source.

col_name types description
league character League slug.
season integer Season year.
season_type integer Season-type id.
week integer Week number.
ranking_id character ESPN ranking id.
ref character ⁠$ref⁠ URL for the ranked-teams detail.

Author(s)

Saiem Gilani

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_broadcasts(), espn_wbb_game_odds(), espn_wbb_game_official_detail(), espn_wbb_game_officials(), espn_wbb_game_play(), espn_wbb_game_play_personnel(), espn_wbb_game_player_box(), espn_wbb_game_powerindex(), espn_wbb_game_predictor(), espn_wbb_game_probabilities(), espn_wbb_game_propbets(), espn_wbb_game_rosters(), espn_wbb_game_situation(), espn_wbb_game_team_leaders(), espn_wbb_game_team_linescores(), espn_wbb_game_team_records(), espn_wbb_game_team_roster(), espn_wbb_game_team_roster_entry(), espn_wbb_game_team_score(), espn_wbb_game_team_statistics(), espn_wbb_injuries(), espn_wbb_leaders(), espn_wbb_news(), espn_wbb_pbp(), espn_wbb_player_awards(), espn_wbb_player_box(), espn_wbb_player_career_stats(), espn_wbb_player_eventlog(), espn_wbb_player_eventlog_v2(), espn_wbb_player_gamelog(), espn_wbb_player_info(), espn_wbb_player_overview(), espn_wbb_player_seasons(), espn_wbb_player_splits(), espn_wbb_player_statisticslog(), espn_wbb_player_stats(), espn_wbb_player_stats_v3(), espn_wbb_position(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), 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_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), 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()

Examples

espn_wbb_week_rankings(week = 5, season = 2025)

Get ESPN WNBA Athletes Index

Description

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_name types description
athlete_id character Unique athlete identifier (ESPN).
full_name character Player's full name.
jersey character Jersey number worn by the player.
position character Listed roster position (G, F, C, etc.).
team_id character Unique team identifier.
headshot character Headshot image URL.
status character Status label.
link character Link.

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

espn_wnba_athletes_index(season = 2025, limit = 50)

Get ESPN WNBA Season Award Detail

Description

Returns the name, description, and winners of one WNBA season award.

Usage

espn_wnba_award(award_id, season = most_recent_wnba_season(), ...)

Arguments

award_id

ESPN award identifier (character or numeric).

season

Season year (numeric). Defaults to the most recent WNBA season.

...

Additional arguments; currently unused.

Value

A tibble with one row per winner.

col_name types description
league character League slug ("wnba").
season integer Season year.
award_id character ESPN award identifier.
name character Award name.
description character Award description.
athlete_id character ESPN athlete id of winner.
team_id character ESPN team id.
athlete_ref character ⁠$ref⁠ to winner's per-season athlete resource.
team_ref character ⁠$ref⁠ to winner's per-season team resource.

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

espn_wnba_award(award_id = 247, season = 2024)

Get ESPN WNBA Calendar

Description

Get ESPN WNBA Calendar

Get ESPN WNBA Calendar

Usage

espn_wnba_calendar(season = most_recent_wnba_season())

Arguments

season

integer or character. Four-digit season year (e.g. 2025). Defaults to most_recent_wnba_season().

Details

Retrieve the ESPN WNBA schedule calendar for a given season. The underlying scoreboard response contains a leagues[[1]]$calendar block with season-type entries (pre-season, regular, post). Uses getOption("wehoop.proxy") or http_proxy/https_proxy environment variables for proxy configuration (per-call proxy override is not supported for ESPN wrappers).

Value

Returns a tibble of calendar entries.

col_name types description
season character Season identifier (4-digit year or 'YYYY-YY' string).
season_type character Season type (1=pre-season, 2=regular season, 3=postseason, 4=off-season for ESPN; or string label for WNBA Stats).
season_type_label character Season type label.
season_start_date character Date in YYYY-MM-DD format.
season_end_date character Date in YYYY-MM-DD format.
label character Label.
alternate_label character Alternate label.
detail character Detail.
value character Numeric or string value field.
start_date character Start date (YYYY-MM-DD).
end_date character End date (YYYY-MM-DD).

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

espn_wnba_calendar(season = 2025)

Get ESPN WNBA Coach-in-Season Detail

Description

Per-season coach detail (name, birth info, ⁠$ref⁠s to team/college/ person). ESPN's coverage of this endpoint is sparse; many (coach × season) combinations return 404.

Usage

espn_wnba_coach_season(coach_id, season = most_recent_wnba_season(), ...)

Arguments

coach_id

ESPN coach identifier.

season

Season year. Defaults to most recent WNBA season.

...

Additional arguments; currently unused.

Details

Get ESPN WNBA Coach-in-Season Detail

Value

A single-row tibble.

col_name types description
league character League slug.
season integer Season year.
coach_id character ESPN coach id.
uid character ESPN UID string.
first_name character First name.
last_name character Last name.
date_of_birth character Date of birth.
birth_city character Birth city.
birth_state character Birth state / region.
n_records integer Count of records entries.
person_ref character ⁠$ref⁠ to person resource.
college_ref character ⁠$ref⁠ to college.
team_ref character ⁠$ref⁠ to team-in-season.

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

espn_wnba_coach_season(coach_id = 52063, season = 2025)

Get ESPN WNBA Coaches

Description

Get ESPN WNBA Coaches

Get ESPN WNBA Coaches

Usage

espn_wnba_coaches(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 = ...) – see ?wehoop for details.

Value

A single wehoop_data tibble with one row per coach.

col_name types description
coach_id character Unique identifier for coach.
first_name character Player's first name.
last_name character Player's last name.
full_name character Player's full name.
experience integer Years of professional experience.
team_id character Unique team identifier.

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

espn_wnba_coaches(season = 2025)

Get ESPN WNBA Conferences

Description

Get ESPN WNBA Conferences

Get ESPN WNBA Conferences

Usage

espn_wnba_conferences()

Value

A wehoop_data tibble with one row per conference:

col_name types description
group_id integer Group identifier (e.g. conference group_id).
conference_short_name character Conference short name (e.g. 'ACC').
conference_uid character ESPN universal conference identifier.
conference_name character Full conference name.
conference_logo character Logo image URL for conference.
parent_group_id integer Unique identifier for parent group.
conference_id integer Conference identifier.

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

try(espn_wnba_conferences())

Get ESPN WNBA Draft Picks

Description

Get ESPN WNBA Draft Picks

Get ESPN WNBA Draft Picks

Usage

espn_wnba_draft(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 = ...).

Details

Calls the ESPN core-v2 endpoint ⁠https://sports.core.api.espn.com/v2/sports/basketball/leagues/wnba/seasons/{year}/draft/rounds⁠, which returns each round of the draft with its picks inlined as ⁠picks: [...]⁠. For historical seasons with no ESPN draft data the function returns an empty tibble rather than erroring.

Value

A wehoop_data tibble with one row per draft pick:

col_name types description
season integer Season identifier (4-digit year or 'YYYY-YY' string).
round integer Tournament / playoff round.
pick integer Pick.
overall integer Overall.
traded logical Traded.
trade_note character Trade note.
status character Status label.
athlete_id character Unique athlete identifier (ESPN).
athlete_ref character Athlete ref.
team_id character Unique team identifier.
team_ref character Team ref.

Athlete and team details (name, position, college, abbreviation) are not inlined in the draft response; resolve them via espn_wnba_player_info() or espn_wnba_team() using the returned IDs.

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

espn_wnba_draft(season = 2024)

Get ESPN WNBA Draft Athlete Detail (Single Drafted Player)

Description

Returns rich single-row detail for one drafted athlete in one NBA draft year: name, height, weight, position, pick (overall/round/team), and a ⁠$ref⁠ to the athlete's core-v2 profile. Use espn_wnba_draft_athletes() to enumerate draftees for a year.

Usage

espn_wnba_draft_athlete_detail(
  season = most_recent_wnba_season(),
  athlete_id,
  ...
)

Arguments

season

Draft year (numeric). Defaults to the most recent NBA season.

athlete_id

ESPN draftee identifier.

...

Additional arguments; currently unused.

Value

A single-row tibble.

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

espn_wnba_draft_athlete_detail(season = 2024, athlete_id = 3149391)

Get ESPN WNBA Draft Athletes Index

Description

Returns one row per drafted athlete in a given WNBA draft year.

Usage

espn_wnba_draft_athletes(season = most_recent_wnba_season(), ...)

Arguments

season

Season year. Defaults to most recent WNBA season.

...

Additional arguments; currently unused.

Details

Get ESPN WNBA Draft Athletes Index

Value

A tibble of athlete IDs + ⁠$ref⁠ URLs.

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

espn_wnba_draft_athletes(season = 2024)

Get ESPN WNBA Draft Pick Detail

Description

Returns a single WNBA draft pick. Defaults to the most recent WNBA season's #1 overall pick. For a full draft, use espn_wnba_draft().

Usage

espn_wnba_draft_pick(
  season = most_recent_wnba_season(),
  round = 1L,
  pick = 1L,
  ...
)

Arguments

season

Season year. Defaults to most recent WNBA season.

round

Draft round (default 1).

pick

Pick number within the round (default 1).

...

Additional arguments; currently unused.

Details

Get ESPN WNBA Draft Pick Detail

Value

A single-row tibble.

col_name types description
league character League slug.
season integer Season year of the draft.
round integer Round number.
pick integer Pick within the round.
overall integer Overall pick number.
traded logical Whether the pick was traded.
trade_note character Trade note (if any).
status character Pick status name.
athlete_id character Drafted athlete's ESPN id.
team_id character Drafting team's ESPN id.
athlete_ref character ⁠$ref⁠ to athlete.
team_ref character ⁠$ref⁠ to team.

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

espn_wnba_draft_pick(season = 2024, round = 1, pick = 1)

Get ESPN WNBA Draft Rounds Summary

Description

Returns one row per round of the WNBA draft (typically 2 rounds: 1st with 30 picks, 2nd with ~28 picks).

Usage

espn_wnba_draft_rounds(season = most_recent_wnba_season(), ...)

Arguments

season

Season year. Defaults to most recent WNBA season.

...

Additional arguments; currently unused.

Details

Get ESPN WNBA Draft Rounds Summary

Value

A tibble with one row per round.

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

espn_wnba_draft_rounds(season = 2024)

Get ESPN WNBA Draft Status

Description

Returns the current status of one WNBA draft year (round, state, description). Live during the draft; static afterward.

Usage

espn_wnba_draft_status(season = most_recent_wnba_season(), ...)

Arguments

season

Season year. Defaults to most recent WNBA season.

...

Additional arguments; currently unused.

Details

Get ESPN WNBA Draft Status

Value

A single-row tibble.

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

espn_wnba_draft_status(season = 2024)

Get ESPN WNBA Franchise Detail

Description

Returns franchise-level metadata for a WNBA franchise. Franchise IDs are stable across relocations and rebrands.

Usage

espn_wnba_franchise(franchise_id, ...)

Arguments

franchise_id

ESPN franchise identifier (character or numeric).

...

Additional arguments; currently unused.

Value

A single-row tibble.

col_name types description
id character ESPN franchise identifier.
uid character ESPN UID string.
slug character URL-safe identifier.
location character Franchise location.
name character Franchise name.
nickname character Common nickname.
abbreviation character Short abbreviation.
display_name character Full display name.
short_display_name character Short display name.
color character Primary color (hex, no leading '#').
is_active logical Whether franchise is currently active.
league character League slug ("wnba").
logo character Primary logo URL.
logo_dark character Dark-mode logo URL.
venue_ref character ⁠$ref⁠ to franchise's primary venue.
team_ref character ⁠$ref⁠ to the current team for franchise.

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

espn_wnba_franchise(franchise_id = 17)

Get ESPN WNBA Franchises Index

Description

Returns the full WNBA franchises index from sports.core.api.espn.com/v2/sports/basketball/leagues/wnba/franchises. Each row is one franchise with its ID and the canonical ⁠$ref⁠ URL — pass an ID to espn_wnba_franchise() for full franchise detail.

Usage

espn_wnba_franchises(...)

Arguments

...

Additional arguments; currently unused.

Value

A tibble with one row per franchise.

col_name types description
franchise_id character ESPN franchise identifier.
ref character Full ⁠$ref⁠ URL for franchise detail.
league character League slug ("wnba").

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

espn_wnba_franchises()

Get ESPN WNBA Free Agents

Description

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 = ...).

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.

Value

A wehoop_data tibble with one row per free agent:

col_name types description
season integer Season identifier (4-digit year or 'YYYY-YY' string).
athlete_id character Unique athlete identifier (ESPN).
athlete_name character Athlete display name (ESPN).
position character Listed roster position (G, F, C, etc.).
prior_team_id character Unique identifier for prior team.
status character Status label.
signed_team_id character Unique identifier for signed team.
signed_date character Date in YYYY-MM-DD format.
contract_value character Contract value.
contract_term_years character Contract term years.

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

espn_wnba_freeagents(season = 2025)

Get ESPN WNBA Season Futures (Long Format)

Description

Returns the full futures-betting board for a WNBA season, in long format: one row per (market x team). Markets include championship winner and conference winners. Backed by sports.core.api.espn.com/v2/sports/basketball/leagues/wnba/seasons/{season}/futures.

Note: ESPN does not currently expose a futures endpoint for women's college basketball.

Usage

espn_wnba_futures(season = most_recent_wnba_season(), ...)

Arguments

season

Season year (numeric). Defaults to the most recent WNBA season.

...

Additional arguments; currently unused.

Value

A long-format tibble.

col_name types description
season integer Season year.
league character League slug ("wnba").
market_id character ESPN futures-market identifier.
market_name character Internal market name.
market_type character Market type code.
market_display character Human-readable market name.
provider_id character Sportsbook provider identifier.
provider_name character Sportsbook provider name.
team_id character ESPN team id.
odds_value character American odds for the team.
team_ref character ⁠$ref⁠ to the per-season team resource.

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

espn_wnba_futures(season = 2025)

Get ESPN's WNBA game data (play-by-play, team and player box)

Description

Get ESPN's WNBA game data (play-by-play, team and player box)

Usage

espn_wnba_game_all(game_id)

Arguments

game_id

Game ID

Value

A named list of dataframes: Plays, Team, Player

Plays

col_name types description
id character Unique play identifcation number
sequence_number character Sequence number representing a shot-possession (V3 PBP).
text character Text description of the play / record.
away_score integer Away team score at the time of the play.
home_score integer Home team score at the time of the play.
scoring_play logical TRUE if the play resulted in points scored.
score_value integer Point value of the play (2 / 3 / 1).
wallclock character Wallclock.
shooting_play logical TRUE if the play was a shooting attempt.
type_id integer Type identifier (numeric).
type_text character Display text for the type field.
period_number integer Numeric period (1-4 for quarters; 5+ for OT).
period_display_value character Period display label (e.g. '1st Quarter', 'OT').
clock_display_value character Game clock display string (e.g. '8:32').
team_id integer Unique team identifier.
coordinate_x_raw numeric X coordinate as returned by the API before any adjustment.
coordinate_y_raw numeric Y coordinate as returned by the API before any adjustment.
coordinate_x numeric X coordinate on the court (half-court layout).
coordinate_y numeric Y coordinate on the court (half-court layout).
play_id character Unique play identifier within a game.
athlete_id_1 integer Primary athlete identifier (e.g. shooter).
athlete_id_2 integer Secondary athlete identifier (e.g. assister / fouler).
athlete_id_3 integer Athlete id 3.
home_team_id integer Unique identifier for the home team.
home_team_mascot character Home team mascot.
home_team_name character Home team name.
home_team_abbrev character Home team three-letter abbreviation.
home_team_logo character Home team logo URL.
home_team_logo_dark character Home team logo URL for dark backgrounds.
home_team_full_name character Full home team name (e.g. 'Las Vegas Aces').
home_team_color character Home team primary color (hex).
home_team_alternate_color character Home team alternate color (hex).
home_team_score integer Home team's score.
home_team_winner logical TRUE if the home team won this game.
home_team_record character Home team's win-loss record.
away_team_id integer Unique identifier for the away team.
away_team_mascot character Away team mascot.
away_team_name character Away team name.
away_team_abbrev character Away team three-letter abbreviation.
away_team_logo character Away team logo URL.
away_team_logo_dark character Away team logo URL for dark backgrounds.
away_team_full_name character Full away team name (e.g. 'Las Vegas Aces').
away_team_color character Away team primary color (hex).
away_team_alternate_color character Away team alternate color (hex).
away_team_score integer Away team's score.
away_team_winner logical TRUE if the away team won this game.
away_team_record character Away team's win-loss record.
game_id integer Unique game identifier.
season integer Season identifier (4-digit year or 'YYYY-YY' string).
season_type integer Season type (1=pre-season, 2=regular season, 3=postseason, 4=off-season for ESPN; or string label for WNBA Stats).
game_date Date Game date (YYYY-MM-DD).
game_date_time POSIXct Game start date/time (ISO 8601).

Team

col_name types description
game_id integer Unique game identifier.
season integer Season identifier (4-digit year or 'YYYY-YY' string).
season_type integer Season type (1=pre-season, 2=regular season, 3=postseason, 4=off-season for ESPN; or string label for WNBA Stats).
game_date Date Game date (YYYY-MM-DD).
game_date_time POSIXct Game start date/time (ISO 8601).
team_id integer Unique team identifier.
team_uid character ESPN universal team identifier (UID format 's:40~l:...~t:...').
team_slug character URL-safe team identifier (e.g. 'lasvegas-aces' / 'aces').
team_location character Team city or location string.
team_name character Full team display name (e.g. 'Las Vegas Aces').
team_abbreviation character Short team abbreviation (e.g. 'LAS').
team_display_name character Full team display name.
team_short_display_name character Short team display name (e.g. 'Aces').
team_color character Team primary color (hex without leading '#').
team_alternate_color character Team alternate color (hex without leading '#').
team_logo character Team logo image URL.
team_home_away character Team home away.
team_score integer Team's score / final score.
team_winner logical TRUE if the team won this game.
assists integer Total assists.
blocks integer Total blocks.
defensive_rebounds integer Defensive rebounds.
field_goal_pct numeric Field goal percentage (0-1).
field_goals_made integer Field goals made (2-pt + 3-pt).
field_goals_attempted integer Field goal attempts (2-pt + 3-pt).
flagrant_fouls integer Total flagrant fouls.
fouls integer Personal fouls.
free_throw_pct numeric Free throw percentage (0-1).
free_throws_made integer Free throws made.
free_throws_attempted integer Free throw attempts.
largest_lead character Largest lead during the game.
offensive_rebounds integer Offensive rebounds.
steals integer Total steals.
team_turnovers integer Team turnovers (turnovers credited to the team rather than a player).
technical_fouls integer Total technical fouls.
three_point_field_goal_pct numeric Three-point field goal percentage (0-1).
three_point_field_goals_made integer Three-point field goals made.
three_point_field_goals_attempted integer Three-point field goal attempts.
total_rebounds integer Total rebounds.
total_technical_fouls integer Total technical fouls (player + team).
total_turnovers integer Total turnovers (player + team).
turnovers integer Total turnovers.
opponent_team_id integer Unique identifier for the opponent team.
opponent_team_uid character Opponent team uid.
opponent_team_slug character Opponent team slug.
opponent_team_location character Opponent team city / location.
opponent_team_name character Opponent team display name.
opponent_team_abbreviation character Opponent team abbreviation.
opponent_team_display_name character Opponent team full display name.
opponent_team_short_display_name character Opponent team short display name.
opponent_team_color character Opponent team primary color (hex).
opponent_team_alternate_color character Opponent team alternate color (hex).
opponent_team_logo character Opponent team logo URL.
opponent_team_score integer Opponent team's score.

Player

col_name types description
game_id integer Unique game identifier.
season integer Season identifier (4-digit year or 'YYYY-YY' string).
season_type integer Season type (1=pre-season, 2=regular season, 3=postseason, 4=off-season for ESPN; or string label for WNBA Stats).
game_date Date Game date (YYYY-MM-DD).
game_date_time POSIXct Game start date/time (ISO 8601).
athlete_id integer Unique athlete identifier (ESPN).
athlete_display_name character Athlete display name (full).
team_id integer Unique team identifier.
team_name character Full team display name (e.g. 'Las Vegas Aces').
team_location character Team city or location string.
team_short_display_name character Short team display name (e.g. 'Aces').
minutes numeric Minutes played, formatted MM:SS (V3 PT-duration parsed) or decimal minutes (V2).
field_goals_made integer Field goals made (2-pt + 3-pt).
field_goals_attempted integer Field goal attempts (2-pt + 3-pt).
three_point_field_goals_made integer Three-point field goals made.
three_point_field_goals_attempted integer Three-point field goal attempts.
free_throws_made integer Free throws made.
free_throws_attempted integer Free throw attempts.
offensive_rebounds integer Offensive rebounds.
defensive_rebounds integer Defensive rebounds.
rebounds integer Total rebounds.
assists integer Total assists.
steals integer Total steals.
blocks integer Total blocks.
turnovers integer Total turnovers.
fouls integer Personal fouls.
plus_minus character Plus/minus point differential while on court.
points integer Points scored.
starter logical TRUE if the player was in the starting lineup; FALSE otherwise.
ejected logical TRUE if the player was ejected from the game.
did_not_play logical TRUE if the player did not appear in the game.
reason character Reason.
active logical TRUE if the row represents an active record (player / team / season).
athlete_jersey character Athlete jersey number.
athlete_short_name character Athlete short display name.
athlete_headshot_href character Athlete headshot image URL.
athlete_position_name character Athlete position ('Guard', 'Forward', 'Center').
athlete_position_abbreviation character Athlete position abbreviation (G / F / C).
team_display_name character Full team display name.
team_uid character ESPN universal team identifier (UID format 's:40~l:...~t:...').
team_slug character URL-safe team identifier (e.g. 'lasvegas-aces' / 'aces').
team_logo character Team logo image URL.
team_abbreviation character Short team abbreviation (e.g. 'LAS').
team_color character Team primary color (hex without leading '#').
team_alternate_color character Team alternate color (hex without leading '#').
home_away character Game venue label ('home' or 'away').
team_winner logical TRUE if the team won this game.
team_score integer Team's score / final score.
opponent_team_id integer Unique identifier for the opponent team.
opponent_team_name character Opponent team display name.
opponent_team_location character Opponent team city / location.
opponent_team_display_name character Opponent team full display name.
opponent_team_abbreviation character Opponent team abbreviation.
opponent_team_logo character Opponent team logo URL.
opponent_team_color character Opponent team primary color (hex).
opponent_team_alternate_color character Opponent team alternate color (hex).
opponent_team_score integer Opponent team's score.

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

try(espn_wnba_game_all(game_id = 401244185))

Get ESPN WNBA Event Broadcasts

Description

Get ESPN WNBA Event Broadcasts

Get ESPN WNBA Event Broadcasts

Usage

espn_wnba_game_broadcasts(event_id, ...)

Arguments

event_id

ESPN event/game identifier (character or numeric).

...

Additional arguments; currently unused.

Value

A tibble with one row per broadcast outlet for the game.

col_name types description
event_id character Unique event / game identifier (ESPN).
broadcast_id character Unique identifier for broadcast.
type_id character Type identifier (numeric).
type_short_name character Type short name.
type_long_name character Type long name.
market_id character Unique identifier for market.
market_type character Market type.
names character Names.
lang character Lang.
region character Region label.

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

espn_wnba_game_broadcasts(event_id = "401736171")

Get ESPN WNBA Event Odds

Description

Get ESPN WNBA Event Odds

Get ESPN WNBA Event Odds

Usage

espn_wnba_game_odds(event_id, ...)

Arguments

event_id

ESPN event/game identifier (character or numeric).

...

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

Value

A tibble with one row per odds provider.

col_name types description
event_id character Unique event / game identifier (ESPN).
provider_id character Unique identifier for provider.
provider_name character Provider name.
details character Details.
over_under numeric Over under.
spread numeric Spread.
home_money_line integer Home team's money line.
away_money_line integer Away team's money line.
home_team_odds_open numeric Home team's team odds open.
home_team_odds_close numeric Home team's team odds close.
away_team_odds_open numeric Away team's team odds open.
away_team_odds_close numeric Away team's team odds close.

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

espn_wnba_game_odds(event_id = "401736171")

Get ESPN WNBA Event Official Detail (Single Official)

Description

Returns a single-row tibble for one referee assigned to one WNBA event, with their name, position (Referee / Crew Chief / Umpire), and crew order. Pair with espn_wnba_game_officials() to enumerate the crew.

Usage

espn_wnba_game_official_detail(event_id, order, ...)

Arguments

event_id

ESPN event identifier.

order

Crew order index (1 = first official). Pair with the order column from event_officials().

...

Additional arguments; currently unused.

Value

A single-row tibble.

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

espn_wnba_game_official_detail(event_id = 401736171, order = 1)

Get ESPN WNBA Event Officials

Description

Get ESPN WNBA Event Officials

Get ESPN WNBA Event Officials

Usage

espn_wnba_game_officials(event_id, ...)

Arguments

event_id

ESPN event/game identifier (character or numeric).

...

Additional arguments; currently unused.

Value

A tibble with one row per official assigned to the game.

col_name types description
event_id character Unique event / game identifier (ESPN).
official_id character Unique official / referee identifier.
full_name character Player's full name.
display_name character Display name.
position_id character Unique position identifier.
position_name character Listed roster position ('Guard', 'Forward', 'Center').
position_type character Position type.
order integer Display order within the result set.

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

espn_wnba_game_officials(event_id = "401736171")

Get ESPN WNBA Event Play Detail (Single Play)

Description

Returns the rich detail block for a single WNBA play: sequence, period, clock, text, scoring/shooting flags, current home/away score, team ⁠$ref⁠, and shot coordinates if applicable. Complements the bulk espn_wnba_pbp() output by exposing the canonical core-v2 play record.

Usage

espn_wnba_game_play(event_id, play_id, ...)

Arguments

event_id

ESPN event identifier.

play_id

ESPN play identifier (visible in pbp() output as play_id or extractable from ⁠plays[].$ref⁠).

...

Additional arguments; currently unused.

Value

A single-row tibble.

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

espn_wnba_game_play(event_id = 401736171, play_id = 4017361714)

Get ESPN WNBA Event Play Personnel (On-Court Lineup at Play)

Description

Returns the players on court at a specific WNBA play in long format (one row per athlete entry across both competitors). Foundation for lineup analysis. ESPN coverage is sparse — many plays return zero rows; the wrapper returns a typed empty tibble in that case.

Usage

espn_wnba_game_play_personnel(event_id, play_id, ...)

Arguments

event_id

ESPN event identifier.

play_id

ESPN play identifier.

...

Additional arguments; currently unused.

Value

A long tibble with one row per on-court athlete.

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

espn_wnba_game_play_personnel(event_id = 401736171, play_id = 4017361714)

Get ESPN WNBA Event Player Box Score (Long Format)

Description

Returns the long-format per-game box score for a single athlete in one WNBA event. One row per (category x stat). Same shape as espn_wnba_game_team_statistics() but scoped to a single athlete-in-event instead of the full team. stat_type defaults to 0 (regular-season aggregate as ESPN tags it for finished events).

Usage

espn_wnba_game_player_box(event_id, team_id, athlete_id, stat_type = 0L, ...)

Arguments

event_id

ESPN event identifier.

team_id

ESPN team identifier (the competitor the athlete played for).

athlete_id

ESPN athlete identifier.

stat_type

Integer stat-type segment. Defaults to 0 (the only type commonly populated for finished events).

...

Additional arguments; currently unused.

Value

A long tibble with one row per (category x stat).

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

espn_wnba_game_player_box(event_id = 401736171, team_id = 17,
                               athlete_id = 3149391)

Get ESPN WNBA Event Power Index Index

Description

Returns the per-team power-index ⁠$ref⁠ URLs for one WNBA event. Coverage is sparse — many events return zero items.

Usage

espn_wnba_game_powerindex(event_id, ...)

Arguments

event_id

ESPN event identifier.

...

Additional arguments; currently unused.

Details

Get ESPN WNBA Event Power Index Index

Value

A tibble with one row per team-game power-index entry.

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

espn_wnba_game_powerindex(event_id = 401736171)

Get ESPN WNBA Event Predictor (Pre-game)

Description

Returns pre-game predictor statistics for one WNBA event in long format: one row per (team × statistic). Typical stats include matchup quality, predicted score, win probability, and team strength metrics. Returns empty for events without predictor data (often the case for already-played games).

Usage

espn_wnba_game_predictor(event_id, ...)

Arguments

event_id

ESPN event identifier.

...

Additional arguments; currently unused.

Details

Get ESPN WNBA Event Predictor (Pre-game)

Value

A long tibble with rows for both home and away teams.

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

espn_wnba_game_predictor(event_id = 401736171)

Get ESPN WNBA Event Win Probabilities

Description

Get ESPN WNBA Event Win Probabilities

Get ESPN WNBA Event Win Probabilities

Usage

espn_wnba_game_probabilities(event_id, limit = 200, ...)

Arguments

event_id

ESPN event/game identifier (character or numeric).

limit

integer. Maximum number of probability rows to return. Defaults to 200. Pagination is handled internally.

...

Additional arguments; currently unused.

Value

A tibble with one row per play-level win-probability entry.

col_name types description
event_id character Unique event / game identifier (ESPN).
sequence_number character Sequence number representing a shot-possession (V3 PBP).
play_id character Unique play identifier within a game.
period integer Period of the game (1-4 quarters; 5+ for OT).
clock character Game clock value.
home_win_percentage numeric Home win percentage (0-1 decimal).
away_win_percentage numeric Away win percentage (0-1 decimal).
tie_percentage numeric Tie percentage (0-1 decimal).
secs_to_end_of_period numeric Secs to end of period.
secs_to_end_of_game numeric Secs to end of game.

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

espn_wnba_game_probabilities(event_id = "401736171", limit = 50)

Get ESPN WNBA Event Prop Bets (Long Format)

Description

Returns prop-bet markets for one WNBA event + provider in long format: one row per (athlete × prop type). Each row has american / decimal / fraction odds plus the current target (e.g. over/under line). Hits the core-v2 competitions/{id}/odds/{provider_id}/propBets endpoint and auto-paginates.

Usage

espn_wnba_game_propbets(event_id, provider_id, ...)

Arguments

event_id

ESPN event identifier.

provider_id

Sportsbook provider id (e.g. 58 = ESPN BET, 100 = Caesars). Look up via espn_wnba_game_odds().

...

Additional arguments; currently unused.

Details

Get ESPN WNBA Event Prop Bets (Long Format)

Value

A long tibble with one row per (athlete × prop type).

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

espn_wnba_game_propbets(event_id = 401736171, provider_id = 58)

Get ESPN WNBA game rosters

Description

Get ESPN WNBA game rosters

Usage

espn_wnba_game_rosters(game_id)

Arguments

game_id

Game ID

Value

A game rosters data frame

col_name types description
athlete_id integer Unique athlete identifier (ESPN).
athlete_uid character ESPN athlete UID (universal identifier).
athlete_guid character ESPN athlete GUID.
athlete_type character Athlete type / class.
sdr integer Sdr.
first_name character Player's first name.
last_name character Player's last name.
full_name character Player's full name.
athlete_display_name character Athlete display name (full).
short_name character Short display name.
weight numeric Player weight in pounds.
display_weight character Player weight in display format (e.g. '180 lbs').
height numeric Player height (string e.g. '6-2' or inches).
display_height character Player height in display format (e.g. '6-2').
age integer Player age (in years).
date_of_birth character Date of birth (YYYY-MM-DD).
slug character URL-safe identifier.
headshot_href character Headshot image URL.
headshot_alt character Alternative-text label for the headshot.
jersey character Jersey number worn by the player.
position_id integer Unique position identifier.
position_name character Listed roster position ('Guard', 'Forward', 'Center').
position_display_name character Position display name.
position_abbreviation character Position abbreviation ('G' / 'F' / 'C').
position_leaf logical Position leaf.
linked logical TRUE if the record is linked to a related entity.
years integer Years.
active logical TRUE if the row represents an active record (player / team / season).
status_id integer Status identifier.
status_name character Status label.
status_type character Status type.
status_abbreviation character Status abbreviation.
birth_place_city character Birth place city.
birth_place_state character Birth place state.
birth_place_country character Birth place country.
starter logical TRUE if the player was in the starting lineup; FALSE otherwise.
valid logical Valid.
did_not_play logical TRUE if the player did not appear in the game.
display_name character Display name.
reason character Reason.
ejected logical TRUE if the player was ejected from the game.
team_id integer Unique team identifier.
team_guid character ESPN team GUID.
team_uid character ESPN universal team identifier (UID format 's:40~l:...~t:...').
team_sdr integer ESPN team SDR identifier.
team_slug character URL-safe team identifier (e.g. 'lasvegas-aces' / 'aces').
team_location character Team city or location string.
team_name character Full team display name (e.g. 'Las Vegas Aces').
team_abbreviation character Short team abbreviation (e.g. 'LAS').
team_display_name character Full team display name.
team_short_display_name character Short team display name (e.g. 'Aces').
team_color character Team primary color (hex without leading '#').
team_alternate_color character Team alternate color (hex without leading '#').
team_is_active logical TRUE if the team is currently active.
is_all_star logical Is all star.
logo_href character Team or league logo URL.
logo_dark_href character Logo URL for dark backgrounds.
logos_href_2 character Logos href 2.
logos_href_3 character Logos href 3.
game_id integer Unique game identifier.
order integer Display order within the result set.
home_away character Game venue label ('home' or 'away').
winner logical Winner.
draft_display_text character Draft display text.
draft_round integer Round of the draft selection.
draft_year integer Draft year (4-digit).
draft_selection integer Draft selection.
hand_type character Hand type.
hand_abbreviation character Hand abbreviation.
hand_display_value character Hand display value.
citizenship character Citizenship.

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

try(espn_wnba_game_rosters(game_id = 401244185))

Get ESPN WNBA Event Situation (Live)

Description

Returns the live game situation for one WNBA event: timeouts remaining, team fouls, fouls to give, bonus state, and a ⁠$ref⁠ to the last play. During a live game this reflects current state; after the game ends the values are frozen.

Usage

espn_wnba_game_situation(event_id, ...)

Arguments

event_id

ESPN event identifier.

...

Additional arguments; currently unused.

Value

A single-row tibble with timeouts + fouls for both teams.

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

espn_wnba_game_situation(event_id = 401736171)

Get ESPN WNBA Event Competitor Leaders (Top Performers)

Description

Returns the per-team statistical leaders for one WNBA event in long format: one row per (category x athlete rank). Categories typically include points, rebounds, assists, and rating.

Usage

espn_wnba_game_team_leaders(event_id, team_id, ...)

Arguments

event_id

ESPN event identifier.

team_id

ESPN team identifier.

...

Additional arguments; currently unused.

Value

A long tibble with one row per (category x rank).

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

espn_wnba_game_team_leaders(event_id = 401736171, team_id = 17)

Get ESPN WNBA Event Competitor Linescores (Per-Quarter)

Description

Returns the per-quarter scoring breakdown for one team in one NBA event. One row per period (regulation quarters + any overtime periods).

Usage

espn_wnba_game_team_linescores(event_id, team_id, ...)

Arguments

event_id

ESPN event identifier.

team_id

ESPN team identifier (the competitor whose linescore to fetch).

...

Additional arguments; currently unused.

Value

A tibble with one row per period.

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

espn_wnba_game_team_linescores(event_id = 401736171, team_id = 17)

Get ESPN WNBA Event Competitor Records (At-Game Breakdown)

Description

Returns team records as of the given WNBA event: overall, home, away, conference, and division breakdowns where available. One row per record type.

Usage

espn_wnba_game_team_records(event_id, team_id, ...)

Arguments

event_id

ESPN event identifier.

team_id

ESPN team identifier.

...

Additional arguments; currently unused.

Value

A tibble with one row per record type.

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

espn_wnba_game_team_records(event_id = 401736171, team_id = 17)

Get ESPN WNBA Event Competitor Roster (Game-Day)

Description

Returns the game-day roster index for one team in one WNBA event. Each row carries the athlete id and the core-v2 ⁠$ref⁠ URL — use the ref to dereference athlete-game splits or biographical data.

Usage

espn_wnba_game_team_roster(event_id, team_id, ...)

Arguments

event_id

ESPN event identifier.

team_id

ESPN team identifier.

...

Additional arguments; currently unused.

Value

A tibble with one row per active athlete.

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

espn_wnba_game_team_roster(event_id = 401736171, team_id = 17)

Get ESPN WNBA Event Competitor Roster Entry (Per-Athlete Game-Day Row)

Description

Returns a single-row tibble describing one athlete's game-day roster entry for one WNBA event. Carries the starter flag, didNotPlay flag with reason, ejection flag, and the substitution slot if the athlete came in for another player. Pair with espn_wnba_game_team_roster() to enumerate the roster.

Usage

espn_wnba_game_team_roster_entry(event_id, team_id, athlete_id, ...)

Arguments

event_id

ESPN event identifier.

team_id

ESPN team identifier.

athlete_id

ESPN athlete identifier.

...

Additional arguments; currently unused.

Value

A single-row tibble.

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

espn_wnba_game_team_roster_entry(event_id = 401736171,
                                            team_id = 17,
                                            athlete_id = 3149391)

Get ESPN WNBA Event Competitor Score (Single Row)

Description

Returns a one-row tibble with one team's final score for one WNBA event: numeric value, display string, winner flag, and source metadata. Quick-lookup wrapper — use espn_wnba_game_team_linescores() for per-period detail.

Usage

espn_wnba_game_team_score(event_id, team_id, ...)

Arguments

event_id

ESPN event identifier.

team_id

ESPN team identifier.

...

Additional arguments; currently unused.

Value

A single-row tibble.

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

espn_wnba_game_team_score(event_id = 401736171, team_id = 17)

Get ESPN WNBA Event Competitor Team Statistics (Long Format)

Description

Returns full team-game statistics for one team in one WNBA event in long format: one row per (category x stat). Covers offensive, defensive, and general categories with both raw values and display strings.

Usage

espn_wnba_game_team_statistics(event_id, team_id, ...)

Arguments

event_id

ESPN event identifier.

team_id

ESPN team identifier.

...

Additional arguments; currently unused.

Value

A long tibble with one row per (category x stat).

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

espn_wnba_game_team_statistics(event_id = 401736171, team_id = 17)

Get ESPN WNBA Injuries

Description

Get ESPN WNBA Injuries

Get ESPN WNBA Injuries

Usage

espn_wnba_injuries(season = most_recent_wnba_season(), ...)

Arguments

season

Numeric or character season year (e.g. 2025). The ESPN injury endpoint does not filter by season server-side; the value is attached as a constant column on the returned tibble for downstream joins. Defaults to most_recent_wnba_season().

...

Currently unused; reserved for future argument threading.

Value

Returns a tibble of league-wide WNBA injury records. Returns an empty tibble (zero rows) when no injuries are reported.

Injuries

col_name types description
team_id character Unique team identifier.
athlete_id character Unique athlete identifier (ESPN).
athlete_name character Athlete display name (ESPN).
position character Listed roster position (G, F, C, etc.).
status character Status label.
date character Date in YYYY-MM-DD format.
type character Record type / category.
side character Side label (e.g. 'home', 'away', or 'overUnder').
returns_at character Returns at.
short_comment character Short comment.
long_comment character Long-form play / event comment.
season integer Season identifier (4-digit year or 'YYYY-YY' string).

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

espn_wnba_injuries()

Get ESPN WNBA League Leaders

Description

Get ESPN WNBA League Leaders

Get ESPN WNBA League Leaders

Usage

espn_wnba_leaders(season = most_recent_wnba_season(), season_type = 2, ...)

Arguments

season

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

season_type

Integer season type: 1 = preseason, 2 = regular (default), 3 = postseason.

...

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 category-athlete pair.

col_name types description
season integer Season identifier (4-digit year or 'YYYY-YY' string).
season_type integer Season type (1=pre-season, 2=regular season, 3=postseason, 4=off-season for ESPN; or string label for WNBA Stats).
category character Category label.
abbreviation character Short abbreviation.
athlete_id character Unique athlete identifier (ESPN).
athlete_name character Athlete display name (ESPN).
team_id character Unique team identifier.
team_abbrev character Abbreviation for team.
value numeric Numeric or string value field.
rank integer Whether to include statistical ranks in the returned table.
display_value character Human-readable display value.

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

espn_wnba_leaders(season = 2024, season_type = 2)

Get ESPN WNBA News

Description

Get ESPN WNBA News

Get ESPN WNBA News

Usage

espn_wnba_news(limit = 50)

Arguments

limit

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

Details

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

Value

Returns a tibble of news articles.

col_name types description
id character Unique play identifcation number
type character Record type / category.
headline character News headline.
description character Long-form description text.
published character Publication timestamp (ISO 8601).
premium logical Premium.
byline character News article byline / author.
link_web character Web link / URL.
league_id character League identifier ('10' = WNBA).

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

espn_wnba_news(limit = 5)

Get ESPN's WNBA play by play data

Description

Get ESPN's WNBA play by play data

Usage

espn_wnba_pbp(game_id)

Arguments

game_id

Game ID

Value

Returns a play-by-play data frame

Plays

col_name types description
id character Unique play identifcation number
sequence_number character Sequence number representing a shot-possession (V3 PBP).
text character Text description of the play / record.
away_score integer Away team score at the time of the play.
home_score integer Home team score at the time of the play.
scoring_play logical TRUE if the play resulted in points scored.
score_value integer Point value of the play (2 / 3 / 1).
wallclock character Wallclock.
shooting_play logical TRUE if the play was a shooting attempt.
type_id integer Type identifier (numeric).
type_text character Display text for the type field.
period_number integer Numeric period (1-4 for quarters; 5+ for OT).
period_display_value character Period display label (e.g. '1st Quarter', 'OT').
clock_display_value character Game clock display string (e.g. '8:32').
team_id integer Unique team identifier.
coordinate_x_raw numeric X coordinate as returned by the API before any adjustment.
coordinate_y_raw numeric Y coordinate as returned by the API before any adjustment.
coordinate_x numeric X coordinate on the court (half-court layout).
coordinate_y numeric Y coordinate on the court (half-court layout).
play_id character Unique play identifier within a game.
athlete_id_1 integer Primary athlete identifier (e.g. shooter).
athlete_id_2 integer Secondary athlete identifier (e.g. assister / fouler).
athlete_id_3 integer Athlete id 3.
home_team_id integer Unique identifier for the home team.
home_team_mascot character Home team mascot.
home_team_name character Home team name.
home_team_abbrev character Home team three-letter abbreviation.
home_team_logo character Home team logo URL.
home_team_logo_dark character Home team logo URL for dark backgrounds.
home_team_full_name character Full home team name (e.g. 'Las Vegas Aces').
home_team_color character Home team primary color (hex).
home_team_alternate_color character Home team alternate color (hex).
home_team_score integer Home team's score.
home_team_winner logical TRUE if the home team won this game.
home_team_record character Home team's win-loss record.
away_team_id integer Unique identifier for the away team.
away_team_mascot character Away team mascot.
away_team_name character Away team name.
away_team_abbrev character Away team three-letter abbreviation.
away_team_logo character Away team logo URL.
away_team_logo_dark character Away team logo URL for dark backgrounds.
away_team_full_name character Full away team name (e.g. 'Las Vegas Aces').
away_team_color character Away team primary color (hex).
away_team_alternate_color character Away team alternate color (hex).
away_team_score integer Away team's score.
away_team_winner logical TRUE if the away team won this game.
away_team_record character Away team's win-loss record.
game_id integer Unique game identifier.
season integer Season identifier (4-digit year or 'YYYY-YY' string).
season_type integer Season type (1=pre-season, 2=regular season, 3=postseason, 4=off-season for ESPN; or string label for WNBA Stats).
game_date Date Game date (YYYY-MM-DD).
game_date_time POSIXct Game start date/time (ISO 8601).

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

try(espn_wnba_pbp(game_id = 401455681))

Get ESPN WNBA Athlete Awards

Description

Get ESPN WNBA Athlete Awards

Get ESPN WNBA Athlete Awards

Usage

espn_wnba_player_awards(athlete_id, ...)

Arguments

athlete_id

ESPN athlete identifier (character or numeric).

...

Additional arguments; currently unused.

Value

A single tibble. This endpoint is sparse; many athletes have no award data, in which case an empty tibble with canonical columns is returned.

col_name types description
season character Season identifier (4-digit year or 'YYYY-YY' string).
award_id character Unique identifier for award.
name character Display name.
description character Long-form description text.
date character Date in YYYY-MM-DD format.
type character Record type / category.

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

espn_wnba_player_awards(athlete_id = "3149391")

Get ESPN's WNBA player box data

Description

Get ESPN's WNBA player box data

Usage

espn_wnba_player_box(game_id)

Arguments

game_id

Game ID

Value

Returns a player boxscore data frame

Player

col_name types description
game_id integer Unique game identifier.
season integer Season identifier (4-digit year or 'YYYY-YY' string).
season_type integer Season type (1=pre-season, 2=regular season, 3=postseason, 4=off-season for ESPN; or string label for WNBA Stats).
game_date Date Game date (YYYY-MM-DD).
game_date_time POSIXct Game start date/time (ISO 8601).
athlete_id integer Unique athlete identifier (ESPN).
athlete_display_name character Athlete display name (full).
team_id integer Unique team identifier.
team_name character Full team display name (e.g. 'Las Vegas Aces').
team_location character Team city or location string.
team_short_display_name character Short team display name (e.g. 'Aces').
minutes numeric Minutes played, formatted MM:SS (V3 PT-duration parsed) or decimal minutes (V2).
field_goals_made integer Field goals made (2-pt + 3-pt).
field_goals_attempted integer Field goal attempts (2-pt + 3-pt).
three_point_field_goals_made integer Three-point field goals made.
three_point_field_goals_attempted integer Three-point field goal attempts.
free_throws_made integer Free throws made.
free_throws_attempted integer Free throw attempts.
offensive_rebounds integer Offensive rebounds.
defensive_rebounds integer Defensive rebounds.
rebounds integer Total rebounds.
assists integer Total assists.
steals integer Total steals.
blocks integer Total blocks.
turnovers integer Total turnovers.
fouls integer Personal fouls.
plus_minus character Plus/minus point differential while on court.
points integer Points scored.
starter logical TRUE if the player was in the starting lineup; FALSE otherwise.
ejected logical TRUE if the player was ejected from the game.
did_not_play logical TRUE if the player did not appear in the game.
reason character Reason.
active logical TRUE if the row represents an active record (player / team / season).
athlete_jersey character Athlete jersey number.
athlete_short_name character Athlete short display name.
athlete_headshot_href character Athlete headshot image URL.
athlete_position_name character Athlete position ('Guard', 'Forward', 'Center').
athlete_position_abbreviation character Athlete position abbreviation (G / F / C).
team_display_name character Full team display name.
team_uid character ESPN universal team identifier (UID format 's:40~l:...~t:...').
team_slug character URL-safe team identifier (e.g. 'lasvegas-aces' / 'aces').
team_logo character Team logo image URL.
team_abbreviation character Short team abbreviation (e.g. 'LAS').
team_color character Team primary color (hex without leading '#').
team_alternate_color character Team alternate color (hex without leading '#').
home_away character Game venue label ('home' or 'away').
team_winner logical TRUE if the team won this game.
team_score integer Team's score / final score.
opponent_team_id integer Unique identifier for the opponent team.
opponent_team_name character Opponent team display name.
opponent_team_location character Opponent team city / location.
opponent_team_display_name character Opponent team full display name.
opponent_team_abbreviation character Opponent team abbreviation.
opponent_team_logo character Opponent team logo URL.
opponent_team_color character Opponent team primary color (hex).
opponent_team_alternate_color character Opponent team alternate color (hex).
opponent_team_score integer Opponent team's score.

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

try(espn_wnba_player_box(game_id = 401244185))

Get ESPN WNBA Athlete Career Stats (Long Format)

Description

Returns career stats for a WNBA athlete in long format. Default stat_type = 0L fetches the standard "All Splits" / regular-season view. Pass a vector like c(0L, 1L, 2L) to attempt multiple types and bind them via a stat_type_id column; variants that 404 for that athlete are silently skipped. Stat types: 0 = regular season (default endpoint), 1 = postseason, 2 = career aggregate. Coverage of types 1 and 2 is sparse — many athletes only have type 0 populated.

Usage

espn_wnba_player_career_stats(athlete_id, stat_type = 0L, ...)

Arguments

athlete_id

ESPN athlete identifier.

stat_type

Integer or integer vector of stat-type codes. Default 0L fetches the standard "All Splits" / regular-season view. Pass a vector like c(0L, 1L, 2L) to bind multiple types via a stat_type_id column; non-existent variants are silently skipped.

...

Additional arguments; currently unused.

Details

Get ESPN WNBA Athlete Career Stats (Long Format)

Value

A long tibble (one row per stat_type × split × category × stat).

col_name types description
league character League slug.
athlete_id character ESPN athlete id.
stat_type_id character Stat-type code (0 = reg, 1 = post, 2 = career).
split_id character Split id.
split_name character Split name (typically "All Splits").
split_type character Split type code.
category_name character Category key (e.g. "defensive").
category_display character Category display name.
category_short character Category short display.
category_abbrev character Category abbreviation.
stat_name character Stat key.
stat_abbrev character Stat abbreviation.
stat_display character Stat display name.
stat_short character Stat short display.
description character Stat description.
value numeric Stat value.
display_value character Display-formatted value.

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

# LeBron James — regular + postseason combined
  espn_wnba_player_career_stats(athlete_id = 3149391)
  # Just career aggregate
  espn_wnba_player_career_stats(athlete_id = 3149391, stat_type = 2L)

Get ESPN WNBA Athlete Eventlog

Description

Get ESPN WNBA Athlete Eventlog

Get ESPN WNBA Athlete Eventlog

Usage

espn_wnba_player_eventlog(athlete_id, season = most_recent_wnba_season(), ...)

Arguments

athlete_id

ESPN athlete identifier (character or numeric).

season

Season year (numeric). Defaults to the most recent WNBA season.

...

Additional arguments; currently unused.

Value

A single tibble. Per-event statistics.$ref URLs from the ESPN core-v2 API are returned as the character column statistics_ref and are NOT resolved. Similarly, event_ref, competition_ref, and team_ref are returned as character columns.

col_name types description
event_ref character Reference link to the originating event.
competition_ref character Competition ref.
team_ref character Team ref.
statistics_ref character Statistics ref.

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

espn_wnba_player_eventlog(athlete_id = "3149391", season = 2024)

Get ESPN WNBA Athlete Per-Season Event Log (core-v2)

Description

Returns one row per (event x team) for an WNBA athlete's appearances in a given season. Distinct from espn_wnba_player_eventlog() which wraps the web-common-v3 gamelog endpoint returning stats per game; this core-v2 variant returns refs + played flag and is era-correct.

Usage

espn_wnba_player_eventlog_v2(
  athlete_id,
  season = most_recent_wnba_season(),
  ...
)

Arguments

athlete_id

ESPN athlete identifier.

season

Season year. Defaults to most recent WNBA season.

...

Additional arguments; currently unused.

Value

A tibble with one row per event appearance. See package source for column schema.

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

espn_wnba_player_eventlog_v2(athlete_id = 2999102, season = 2025)

Get ESPN WNBA Athlete Gamelog

Description

Get ESPN WNBA Athlete Gamelog

Get ESPN WNBA Athlete Gamelog

Usage

espn_wnba_player_gamelog(athlete_id, season = most_recent_wnba_season(), ...)

Arguments

athlete_id

ESPN athlete identifier (character or numeric).

season

Season year (numeric). Defaults to the most recent WNBA season.

...

Additional arguments; currently unused.

Value

A single tibble with one row per game. Column names reflect the stat labels returned by ESPN and will vary by season and player.

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

espn_wnba_player_gamelog(athlete_id = "3149391", season = 2024)

Get ESPN WNBA Athlete Info

Description

Get ESPN WNBA Athlete Info

Get ESPN WNBA Athlete Info

Usage

espn_wnba_player_info(athlete_id, ...)

Arguments

athlete_id

ESPN athlete identifier (character or numeric).

...

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 data frames: Bio, Team, Position, Status, College, Draft.

Bio

col_name types description
id character Unique play identifcation number
full_name character Player's full name.
display_name character Display name.
jersey character Jersey number worn by the player.
age character Player age (in years).
date_of_birth character Date of birth (YYYY-MM-DD).
headshot_href character Headshot image URL.

Team

col_name types description
id character Unique play identifcation number
abbreviation character Short abbreviation.
display_name character Display name.

Position

col_name types description
id character Unique play identifcation number
name character Display name.
abbreviation character Short abbreviation.

Status

col_name types description
id character Unique play identifcation number
name character Display name.
type character Record type / category.

College

col_name types description
id character Unique play identifcation number
name character Display name.
mascot character Team mascot.

Draft

col_name types description
year character 4-digit year.
round character Tournament / playoff round.
selection character Selection.

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

espn_wnba_player_info(athlete_id = "3149391")

Get ESPN WNBA Athlete Overview

Description

Get ESPN WNBA Athlete Overview

Get ESPN WNBA Athlete Overview

Usage

espn_wnba_player_overview(athlete_id, season = most_recent_wnba_season(), ...)

Arguments

athlete_id

ESPN athlete identifier (character or numeric).

season

Season year (numeric). Defaults to the most recent WNBA season.

...

Additional arguments; currently unused.

Value

A named list of data frames: Statistics, NextGame, Last5Games, Headlines, FantasyOutlook.

Statistics

col_name types description
(varies) character

NextGame

col_name types description
id character Unique play identifcation number
date character Date in YYYY-MM-DD format.
name character Display name.
short_name character Short display name.

Last5Games

col_name types description
(varies) character

Headlines

col_name types description
headline character News headline.
description character Long-form description text.
published character Publication timestamp (ISO 8601).

FantasyOutlook

col_name types description
(varies) character

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

espn_wnba_player_overview(athlete_id = "3149391", season = 2024)

Get ESPN WNBA Athlete Career Seasons

Description

Returns the list of seasons an WNBA athlete appeared in. Useful for bounding follow-up calls to per-season endpoints.

Usage

espn_wnba_player_seasons(athlete_id, ...)

Arguments

athlete_id

ESPN athlete identifier (character or numeric).

...

Additional arguments; currently unused.

Value

A tibble with one row per career season.

col_name types description
league character League slug.
athlete_id character ESPN athlete id.
season integer Season year.
ref character ⁠$ref⁠ URL to the season detail.

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

# LeBron James (1966): 23 career seasons
  espn_wnba_player_seasons(athlete_id = 3149391)

Get ESPN WNBA Athlete Splits

Description

Get ESPN WNBA Athlete Splits

Get ESPN WNBA Athlete Splits

Usage

espn_wnba_player_splits(athlete_id, season = most_recent_wnba_season(), ...)

Arguments

athlete_id

ESPN athlete identifier (character or numeric).

season

Season year (numeric). Defaults to the most recent WNBA season.

...

Additional arguments; currently unused.

Value

A single long-format tibble. When data are present, columns include at minimum category and split_name, plus per-stat columns driven by ESPN labels.

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

espn_wnba_player_splits(athlete_id = "3149391", season = 2024)

Get ESPN WNBA Athlete Statisticslog

Description

Get ESPN WNBA Athlete Statisticslog

Get ESPN WNBA Athlete Statisticslog

Usage

espn_wnba_player_statisticslog(
  athlete_id,
  season = most_recent_wnba_season(),
  ...
)

Arguments

athlete_id

ESPN athlete identifier (character or numeric).

season

Season year (numeric). Defaults to the most recent WNBA season.

...

Additional arguments; currently unused.

Value

A single tibble. When resolved, each row corresponds to one statistical entry in the core-v2 statistics log, with event_ref and statistics_ref character columns pointing to resolvable ESPN endpoints.

col_name types description
event_ref character Reference link to the originating event.
statistics_ref character Statistics ref.

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

espn_wnba_player_statisticslog(athlete_id = "3149391", season = 2024)

Get ESPN WNBA player stats data

Description

Get ESPN WNBA player stats data

Usage

espn_wnba_player_stats(
  athlete_id,
  year,
  season_type = "regular",
  total = FALSE
)

Arguments

athlete_id

Athlete ID

year

Year

season_type

(character, default: regular): Season type - regular or postseason

total

(boolean, default: FALSE): Totals

Value

Returns a tibble with the player stats data

col_name types description
athlete_id integer Unique athlete identifier (ESPN).
athlete_uid character ESPN athlete UID (universal identifier).
athlete_guid character ESPN athlete GUID.
athlete_type character Athlete type / class.
sdr integer Sdr.
first_name character Player's first name.
last_name character Player's last name.
full_name character Player's full name.
display_name character Display name.
short_name character Short display name.
weight numeric Player weight in pounds.
display_weight character Player weight in display format (e.g. '180 lbs').
height numeric Player height (string e.g. '6-2' or inches).
display_height character Player height in display format (e.g. '6-2').
age integer Player age (in years).
date_of_birth character Date of birth (YYYY-MM-DD).
slug character URL-safe identifier.
headshot_href character Headshot image URL.
headshot_alt character Alternative-text label for the headshot.
position_id integer Unique position identifier.
position_name character Listed roster position ('Guard', 'Forward', 'Center').
position_display_name character Position display name.
position_abbreviation character Position abbreviation ('G' / 'F' / 'C').
position_leaf logical Position leaf.
linked logical TRUE if the record is linked to a related entity.
years integer Years.
active logical TRUE if the row represents an active record (player / team / season).
status_id integer Status identifier.
status_name character Status label.
status_type character Status type.
status_abbreviation character Status abbreviation.
defensive_blocks numeric Short for blocked shot, number of times when a defensive player legally deflects a field goal attempt from an offensive player.
defensive_defensive_rebounds numeric The number of times when the defense obtains the possession of the ball after a missed shot by the offense.
defensive_steals numeric The number of times a defensive player forced a turnover by intercepting or deflecting a pass or a dribble of an offensive player.
defensive_avg_defensive_rebounds numeric The average defensive rebounds per game.
defensive_avg_blocks numeric The average blocks per game.
defensive_avg_steals numeric The average steals per game.
defensive_avg48defensive_rebounds numeric The average number of defensive rebounds per 48 minutes.
defensive_avg48blocks numeric The average number of blocks per 48 minutes.
defensive_avg48steals numeric The average number of steals per 48 minutes.
general_disqualifications numeric The number of times a player reached the foul limit.
general_flagrant_fouls numeric The number of fouls that the officials thought were unnecessary or excessive.
general_fouls numeric The number of times a player had illegal contact with the opponent.
general_ejections numeric The number of times a player or coach is removed from the game as a result of a serious offense.
general_technical_fouls numeric The number of times an player or coach was called for a technical foul (unsportsmanlike conduct or violations).
general_rebounds numeric The total number of rebounds (offensive and defensive).
general_vorp numeric Value Over Replacement Player.
general_minutes numeric The total number of minutes played.
general_avg_minutes numeric The average number of minutes per game.
general_fantasy_rating numeric The Fantasy Rating of a player.
general_nba_rating numeric General nba rating.
general_plus_minus numeric A player's estimated on-court impact on team performance measured in point differential per 100 possessions.
general_avg_rebounds numeric The average rebounds per game.
general_avg_fouls numeric The average fouls committed per game.
general_avg_flagrant_fouls numeric The average number of flagrant fouls per game.
general_avg_technical_fouls numeric The average number of technical fouls per game.
general_avg_ejections numeric The average ejections per game.
general_avg_disqualifications numeric The average number of disqualifications per game.
general_assist_turnover_ratio numeric The average number of assists a player or team records per turnover.
general_steal_foul_ratio numeric The average number of steals a player or team records per foul committed.
general_block_foul_ratio numeric The average number of blocks a player or record per foul committed.
general_avg_team_rebounds numeric The average number of rebounds for a team per game.
general_total_rebounds numeric The total number of rebounds for a team or player.
general_total_technical_fouls numeric The total number of technical fouls for a team or player.
general_team_assist_turnover_ratio numeric The number of assists per turnover for a team.
general_steal_turnover_ratio numeric The number of steals per turnover.
general_avg48rebounds numeric The average number of rebounds per 48 minutes.
general_avg48fouls numeric The average number of fouls committed per 48 minutes.
general_avg48flagrant_fouls numeric The average number of flagrant fouls committed per 48 minutes.
general_avg48technical_fouls numeric The average number of technical fouls committed per 48 minutes.
general_avg48ejections numeric The average number of ejections per 48 minutes.
general_avg48disqualifications numeric The average number of disqualifications per 48 minutes.
general_games_played numeric Games Played.
general_games_started numeric The number of games started by an athlete.
general_double_double numeric The number of times double digit values were accumulated in 2 of the following categories: points, rebounds, assists, steals, and blocked shots.
general_triple_double numeric The number of times double digit values were accumulated in 3 of the following categories: points, rebounds, assists, steals, and blocked shots.
offensive_assists numeric The number of times a player who passes the ball to a teammate in a way that leads to a score by field goal, meaning that he or she was "assisting" in the basket. There is some judgment involved in deciding whether a passer should be credited with an assist.
offensive_field_goals numeric Field Goal makes and attempts.
offensive_field_goals_attempted numeric The number of times a 2pt field goal was attempted.
offensive_field_goals_made numeric The number of times a 2pt field goal was made.
offensive_field_goal_pct numeric The ratio of field goals made to field goals attempted: FGM / FGA.
offensive_free_throws numeric Free Throw makes and attempts.
offensive_free_throw_pct numeric The ratio of free throws made to free throws attempted: FTM / FTA.
offensive_free_throws_attempted numeric The number of times a free throw was attempted.
offensive_free_throws_made numeric The number of times a free throw was made.
offensive_offensive_rebounds numeric The number of times when the offense obtains the possession of the ball after a missed shot.
offensive_points numeric The number of points scored.
offensive_turnovers numeric The number of times a player loses possession to the other team.
offensive_three_point_pct numeric The ratio of 3pt field goals made to 3pt field goals attempted: 3PM / 3PA.
offensive_three_point_field_goals_attempted numeric The number of times a 3pt field goal was attempted.
offensive_three_point_field_goals_made numeric The number of times a 3pt field goal was made.
offensive_total_turnovers numeric The number of turnovers plus team turnovers for the team.
offensive_points_in_paint numeric The amount of points scored in the area known as "the Paint"(the rectangle between the foul line and the baseline).
offensive_brick_index numeric How many points a player costs his team with his shooting compared with the league average on a per-40-minute basis. ((52.8 - TS%) x (FGA + (FTA x 0.44))) / (Min/40) .
offensive_avg_field_goals_made numeric The average field goals made per game.
offensive_avg_field_goals_attempted numeric The average field goals attempted per game.
offensive_avg_three_point_field_goals_made numeric The average three point field goals made per game.
offensive_avg_three_point_field_goals_attempted numeric The average three point field goals attempted per game.
offensive_avg_free_throws_made numeric The average free throw shots made per game.
offensive_avg_free_throws_attempted numeric The average free throw shots attempted per game.
offensive_avg_points numeric The average number of points scored per game.
offensive_avg_offensive_rebounds numeric The average offensive rebounds per game.
offensive_avg_assists numeric The average assists per game.
offensive_avg_turnovers numeric The average turnovers committed per game.
offensive_offensive_rebound_pct numeric The percentage of the number of times they obtain the possession of the ball after a missed shot.
offensive_estimated_possessions numeric An estimation of the number of possessions for a team or player.
offensive_avg_estimated_possessions numeric The average number of estimated possessions per game for a team or player.
offensive_points_per_estimated_possessions numeric The number of points per estimated possession for a team or player.
offensive_avg_team_turnovers numeric The average number of turnovers for a team per game.
offensive_avg_total_turnovers numeric The average number of total turnovers for a team per game.
offensive_three_point_field_goal_pct numeric The ratio of 3pt field goals made to 3pt field goals attempted: 3PM / 3PA.
offensive_two_point_field_goals_made numeric The number of 2-point field goals made for a team or player.
offensive_two_point_field_goals_attempted numeric The number of 2-point field goals attempted for a team or player.
offensive_avg_two_point_field_goals_made numeric The number of 2-point field goals made per game for a team or player.
offensive_avg_two_point_field_goals_attempted numeric The number of 2-point field goals attempted per game for a team or player.
offensive_two_point_field_goal_pct numeric The percentage of 2-points fields goals made by a team or player.
offensive_shooting_efficiency numeric The efficiency with which a team or player shoots the basketball.
offensive_scoring_efficiency numeric The efficiency with which a team or player scores the basketball.
offensive_avg48field_goals_made numeric The average number of fieldgoals made per 48 minutes.
offensive_avg48field_goals_attempted numeric The average number of fieldgoals attempted per 48 minutes.
offensive_avg48three_point_field_goals_made numeric The average per number of 3-Pointers made per 48 minutes.
offensive_avg48three_point_field_goals_attempted numeric The average number of 3-pointers attempted per 48 minutes.
offensive_avg48free_throws_made numeric The average number of Free Throws made per 48 minutes.
offensive_avg48free_throws_attempted numeric The average number of free throws attempted per 48 minutes.
offensive_avg48points numeric The average number of points scored per 48 minutes.
offensive_avg48offensive_rebounds numeric The average number of offenseive rebounds per 48 minutes.
offensive_avg48assists numeric The average number of assists per 48 minutes.
offensive_avg48turnovers numeric The average number of turnovers per 48 minutes.
team_id integer Unique team identifier.
team_guid character ESPN team GUID.
team_uid character ESPN universal team identifier (UID format 's:40~l:...~t:...').
team_sdr integer ESPN team SDR identifier.
team_slug character URL-safe team identifier (e.g. 'lasvegas-aces' / 'aces').
team_location character Team city or location string.
team_name character Full team display name (e.g. 'Las Vegas Aces').
team_abbreviation character Short team abbreviation (e.g. 'LAS').
team_display_name character Full team display name.
team_short_display_name character Short team display name (e.g. 'Aces').
team_color character Team primary color (hex without leading '#').
team_alternate_color character Team alternate color (hex without leading '#').
team_is_active logical TRUE if the team is currently active.
team_is_all_star logical TRUE if the row represents an All-Star team.
logo_href character Team or league logo URL.
logo_dark_href character Logo URL for dark backgrounds.

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

try(espn_wnba_player_stats(athlete_id = 2529130, year = 2022))

Get ESPN WNBA Athlete Stats

Description

Get ESPN WNBA Athlete Stats

Get ESPN WNBA Athlete Stats

Usage

espn_wnba_player_stats_v3(athlete_id, season = most_recent_wnba_season(), ...)

Arguments

athlete_id

ESPN athlete identifier (character or numeric).

season

Season year (numeric). Defaults to the most recent WNBA season.

...

Additional arguments; currently unused.

Value

A wide wehoop_data tibble, one row per athlete-season-team, with the ESPN stat categories spread across prefixed columns:

col_name types description
athlete_id character ESPN athlete identifier (echoed input).
season integer Season year for the stat line.
team_id character ESPN team identifier for that season.
team_slug character Team slug (e.g. 'phoenix-mercury').
avg_* numeric Per-game season-average stats (e.g. avg_avg_points).
tot_* numeric Season-total stats (e.g. tot_points).
misc_* numeric Miscellaneous season totals.

Stat column names come from ESPN's positional names array per category, cleaned via janitor::make_clean_names(); the exact set varies by season.

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

espn_wnba_player_stats_v3(athlete_id = "4068159", season = 2024)

Get ESPN WNBA Position Detail

Description

Returns metadata for a single WNBA position. Useful for dereferencing position ⁠$ref⁠ URLs embedded in athlete records, and for navigating parent/leaf relationships in the position taxonomy.

Usage

espn_wnba_position(position_id, ...)

Arguments

position_id

ESPN position identifier (character or numeric).

...

Additional arguments; currently unused.

Value

A single-row tibble.

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

espn_wnba_position(position_id = 1)

Get ESPN WNBA Positions Index

Description

Returns the WNBA position dictionary index. One row per position with its id and the canonical ⁠$ref⁠ URL — pass an id to espn_wnba_position() for full details (display name, abbreviation, leaf flag, parent link).

Usage

espn_wnba_positions(...)

Arguments

...

Additional arguments; currently unused.

Value

A tibble with one row per position.

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

espn_wnba_positions()

Get ESPN WNBA Season Power Index (Long Format)

Description

Returns ESPN's Basketball Power Index (BPI) and related per-team metrics for one WNBA season, in long format: one row per (team x stat).

Usage

espn_wnba_powerindex(
  season = most_recent_wnba_season(),
  season_type = c(2L, 3L),
  ...
)

Arguments

season

Season year (numeric). Defaults to the most recent WNBA season.

season_type

Integer (1=preseason, 2=regular (default), 3=postseason).

...

Additional arguments; currently unused.

Value

A long tibble with one row per (team x stat).

col_name types description
league character League slug ("wnba").
season integer Season year.
season_type integer 1=preseason, 2=regular, 3=postseason.
team_id character ESPN team id.
stat_name character Internal stat key.
abbreviation character Short stat abbreviation.
display_name character Human-readable stat name.
description character Stat description.
value numeric Stat value.
display_value character Display-formatted value.
last_updated character Last-updated timestamp.
team_ref character ⁠$ref⁠ to the team-in-season resource.

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

espn_wnba_powerindex(season = 2025)

Get WNBA schedule for a specific year/date from ESPN's API

Description

Get WNBA schedule for a specific year/date from ESPN's API

Usage

espn_wnba_scoreboard(season)

Arguments

season

Either numeric or character

Value

Returns a tibble

col_name types description
matchup character Matchup.
matchup_short character Matchup short.
season integer Season identifier (4-digit year or 'YYYY-YY' string).
season_type integer Season type (1=pre-season, 2=regular season, 3=postseason, 4=off-season for ESPN; or string label for WNBA Stats).
season_slug character Season slug.
game_id integer Unique game identifier.
game_uid character Game uid.
game_date Date Game date (YYYY-MM-DD).
attendance integer Reported attendance.
status_name character Status label.
broadcast_market character Broadcast market label (e.g. 'national', 'home').
broadcast_name character Broadcast name.
start_date character Start date (YYYY-MM-DD).
game_date_time POSIXct Game start date/time (ISO 8601).
home_team_name character Home team name.
home_team_logo character Home team logo URL.
home_team_abb character Home team's team abb.
home_team_id integer Unique identifier for the home team.
home_team_location character Home team's team location.
home_team_full_name character Full home team name (e.g. 'Las Vegas Aces').
home_team_color character Home team primary color (hex).
home_score integer Home team score at the time of the play.
home_win integer Home team's win.
home_record character Home win-loss record.
away_team_name character Away team name.
away_team_logo character Away team logo URL.
away_team_abb character Away team's team abb.
away_team_id integer Unique identifier for the away team.
away_team_location character Away team's team location.
away_team_full_name character Full away team name (e.g. 'Las Vegas Aces').
away_team_color character Away team primary color (hex).
away_score integer Away team score at the time of the play.
away_win integer Away team's win.
away_record character Away win-loss record.

Author(s)

Saiem Gilani.

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

# Get schedule from date 2022-08-31

  try(espn_wnba_scoreboard (season = "20220831"))

Get ESPN WNBA Season Awards Index

Description

Returns the list of award IDs given out in a WNBA season from sports.core.api.espn.com/v2/sports/basketball/leagues/wnba/seasons/{season}/awards. The index only contains IDs and ⁠$ref⁠ URLs — pass an ID to espn_wnba_award() for the award name, description, and winners.

Usage

espn_wnba_season_awards(season = most_recent_wnba_season(), ...)

Arguments

season

Season year (numeric). Defaults to the most recent WNBA season.

...

Additional arguments; currently unused.

Value

A tibble with one row per award.

col_name types description
season integer Season year.
award_id character ESPN award identifier.
ref character Full ⁠$ref⁠ URL for the award detail.
league character League slug ("wnba").

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

espn_wnba_season_awards(season = 2024)

Get ESPN WNBA Season Draft (Top-Level Metadata)

Description

Returns a single-row tibble with top-level draft-year metadata: year, number of rounds, display name, plus ⁠$ref⁠s for the deeper sub-resources (status, athletes, rounds) already wrapped by espn_wnba_draft_status(), espn_wnba_draft_athletes(), and espn_wnba_draft_rounds().

Usage

espn_wnba_season_draft(season = most_recent_wnba_season(), ...)

Arguments

season

Season year (numeric). Defaults to the most recent WNBA season.

...

Additional arguments; currently unused.

Value

A single-row tibble.

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

espn_wnba_season_draft(season = 2024)

Get ESPN WNBA Season Group Detail

Description

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

Usage

espn_wnba_season_group(
  group_id,
  season = most_recent_wnba_season(),
  season_type = 2L,
  ...
)

Arguments

group_id

ESPN group identifier.

season

Season year. Defaults to most recent WNBA season.

season_type

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

...

Additional arguments; currently unused.

Details

Get ESPN WNBA Season Group Detail

Value

A single-row tibble.

col_name types description
league character League slug.
season integer Season year.
season_type integer Season-type id.
group_id character ESPN group id.
uid character ESPN UID string.
name character Full name (e.g. "Eastern Conference").
abbreviation character Short code (e.g. "EAST").
short_name character Short name.
midsize_name character Mid-size display name.
is_conference logical Whether this group is a conference.
slug character URL slug.
parent_ref character ⁠$ref⁠ to parent group (if any).
children_ref character ⁠$ref⁠ to child-groups endpoint.
teams_ref character ⁠$ref⁠ to teams-in-group endpoint.
standings_ref character ⁠$ref⁠ to standings endpoint.

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

espn_wnba_season_group(group_id = 5, season = 2025)

Get ESPN WNBA Season Group Children Index

Description

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

Usage

espn_wnba_season_group_children(
  group_id,
  season = most_recent_wnba_season(),
  season_type = 2L,
  ...
)

Arguments

group_id

Parent group identifier.

season

Season year. Defaults to most recent WNBA season.

season_type

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

...

Additional arguments; currently unused.

Details

Get ESPN WNBA Season Group Children Index

Value

A tibble with one row per child group.

col_name types description
league character League slug.
season integer Season year.
season_type integer Season-type id.
parent_group_id character Parent group id (queried).
child_group_id character Child group id.
ref character ⁠$ref⁠ to child group detail.

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

espn_wnba_season_group_children(group_id = 5, season = 2025)

Get ESPN WNBA Season Group Teams Index

Description

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

Usage

espn_wnba_season_group_teams(
  group_id,
  season = most_recent_wnba_season(),
  season_type = 2L,
  ...
)

Arguments

group_id

ESPN group identifier.

season

Season year. Defaults to most recent WNBA season.

season_type

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

...

Additional arguments; currently unused.

Details

Get ESPN WNBA Season Group Teams Index

Value

A tibble with one row per team in the group.

col_name types description
league character League slug.
season integer Season year.
season_type integer Season-type id.
group_id character ESPN group id.
team_id character ESPN team id.
ref character ⁠$ref⁠ URL to the team-in-season entry.

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

espn_wnba_season_group_teams(group_id = 5, season = 2025)

Get ESPN WNBA Season Groups Index

Description

Returns the list of group IDs (conferences / divisions) for one (WNBA season x season-type) via core-v2 ⁠/seasons/{season}/types/{season_type}/groups⁠.

Usage

espn_wnba_season_groups(
  season = most_recent_wnba_season(),
  season_type = c(2L, 3L),
  ...
)

Arguments

season

Season year. Defaults to most recent WNBA season.

season_type

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

...

Additional arguments; currently unused.

Value

A tibble with one row per group.

col_name types description
league character League slug.
season integer Season year.
season_type integer Season-type id.
group_id character ESPN group id.
ref character ⁠$ref⁠ URL for the group detail.

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

espn_wnba_season_groups(season = 2025)

Get ESPN WNBA Season Info

Description

Get ESPN WNBA Season Info

Get ESPN WNBA Season Info

Usage

espn_wnba_season_info(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 = ...) – 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_name types description
year integer 4-digit year.
start_date character Start date (YYYY-MM-DD).
end_date character End date (YYYY-MM-DD).
display_name character Display name.
type_id character Type identifier (numeric).
type_name character Type name.

Types / Athletes / Coaches / Teams / Awards

col_name types description
count integer Count of count.
ref character Ref.

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

espn_wnba_season_info(season = 2025)

Get ESPN WNBA Season Leaders (Long Format)

Description

Returns the per-category leaderboard for one (WNBA season x season-type), in long format. Each row is one (category x rank) entry, e.g. "Points Per Game x rank 1 x LeBron James".

Usage

espn_wnba_season_leaders(
  season = most_recent_wnba_season(),
  season_type = c(2L, 3L),
  ...
)

Arguments

season

Season year. Defaults to most recent WNBA season.

season_type

Season-type id (2 = regular (default), 3 = postseason).

...

Additional arguments; currently unused.

Details

Get ESPN WNBA Season Leaders (Long Format)

Value

A long tibble with one row per (category x leader).

col_name types description
league character League slug.
season integer Season year.
season_type integer Season-type id.
category_name character Internal category key (e.g. "pointsPerGame").
category_display character Human-readable category name.
category_short character Short display name.
category_abbrev character Stat abbreviation (e.g. "PTS").
rank integer Rank within the category (1 = best).
athlete_id character ESPN athlete id.
team_id character ESPN team id.
display_value character Display-formatted value.
value numeric Numeric leader value.
rel character Comma-joined rel tags from ESPN.
athlete_ref character ⁠$ref⁠ URL to the leader's athlete.
team_ref character ⁠$ref⁠ URL to the leader's team.

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

espn_wnba_season_leaders(season = 2025)

Get ESPN WNBA Season Ranking Detail

Description

Returns the per-week snapshot index for one ranking source (e.g. AP Top 25). Each row is one weekly snapshot; the ref URL resolves to the actual ranked teams for that (season-type x week) and will be wrapped by a forthcoming espn_LOWERWNBA_week_ranking().

Usage

espn_wnba_season_ranking(ranking_id, season = most_recent_wnba_season(), ...)

Arguments

ranking_id

ESPN ranking identifier (character or numeric).

season

Season year. Defaults to most recent WNBA season.

...

Additional arguments; currently unused.

Details

Get ESPN WNBA Season Ranking Detail

Value

A tibble with one row per weekly snapshot.

col_name types description
league character League slug.
season integer Season year.
ranking_id character ESPN ranking id.
name character Ranking name (e.g. "AP Top 25").
short_name character Short name (e.g. "AP Poll").
type character Ranking type code (e.g. "ap").
season_type integer Season-type id of this snapshot.
week integer Week number of this snapshot.
ref character ⁠$ref⁠ URL for the per-week ranking detail.

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

espn_wnba_season_ranking(ranking_id = 1, season = 2025)

Get ESPN WNBA Season Rankings Index

Description

Returns the index of season-level rankings recorded for one WNBA season. WNBA typically returns zero rankings (ranking polls are a college concept); the wrapper is provided for symmetry across leagues. For WBB use the matching espn_wbb_season_rankings().

Usage

espn_wnba_season_rankings(season = most_recent_wnba_season(), ...)

Arguments

season

Season year. Defaults to most recent WNBA season.

...

Additional arguments; currently unused.

Details

Get ESPN WNBA Season Rankings Index

Value

A tibble with one row per ranking source.

col_name types description
league character League slug.
season integer Season year.
ranking_id character ESPN ranking id.
ref character ⁠$ref⁠ URL for the ranking detail.

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

espn_wnba_season_rankings(season = 2025)

Get ESPN WNBA Season-Type Detail

Description

Returns metadata for one season-type within an WNBA season: name, abbreviation, start / end dates, and whether it carries groups, standings, or playoff legs.

Usage

espn_wnba_season_type(
  season_type = 2L,
  season = most_recent_wnba_season(),
  ...
)

Arguments

season_type

Season-type id (1 = preseason, 2 = regular (default), 3 = postseason, 4 = off-season).

season

Season year. Defaults to most recent WNBA season.

...

Additional arguments; currently unused.

Details

Get ESPN WNBA Season-Type Detail

Value

A single-row tibble.

col_name types description
league character League slug.
season integer Season year.
season_type integer Season-type id.
type integer Numeric type code.
name character Display name (e.g. "Regular Season").
abbreviation character Short code (e.g. "reg").
year integer Year stamp.
start_date character ISO 8601 start date.
end_date character ISO 8601 end date.
has_groups logical Whether groups exist for this type.
has_standings logical Whether standings exist.
has_legs logical Whether playoff legs exist.
slug character URL slug.
groups_ref character ⁠$ref⁠ to the groups endpoint.
weeks_ref character ⁠$ref⁠ to the weeks endpoint.
leaders_ref character ⁠$ref⁠ to the leaders endpoint.

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

espn_wnba_season_type(season_type = 2, season = 2025)

Get ESPN WNBA Season Types Index

Description

Returns the index of season-type IDs that exist for one WNBA season (typically 1 = preseason, 2 = regular, 3 = postseason, 4 = off-season). Pass an ID to espn_wnba_season_type() for the start/end dates and whether that type carries groups, standings, or legs.

Usage

espn_wnba_season_types(season = most_recent_wnba_season(), ...)

Arguments

season

Season year (numeric). Defaults to the most recent WNBA season.

...

Additional arguments; currently unused.

Value

A tibble with one row per season type.

col_name types description
league character League slug ("wnba").
season integer Season year.
season_type integer Season-type id (1/2/3/4).
ref character ⁠$ref⁠ URL for the type detail.

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

espn_wnba_season_types(season = 2025)

Get ESPN WNBA Season-Week Detail

Description

Returns metadata for one week (number, start / end dates, text label, and ⁠$ref⁠ to the per-week rankings endpoint).

Usage

espn_wnba_season_week(
  week,
  season = most_recent_wnba_season(),
  season_type = 2L,
  ...
)

Arguments

week

Week number.

season

Season year. Defaults to most recent WNBA season.

season_type

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

...

Additional arguments; currently unused.

Details

Get ESPN WNBA Season-Week Detail

Value

A single-row tibble.

col_name types description
league character League slug.
season integer Season year.
season_type integer Season-type id.
week integer Week number.
text character Display label (e.g. "Week 5").
start_date character ISO 8601 week start.
end_date character ISO 8601 week end.
rankings_ref character ⁠$ref⁠ to the per-week rankings endpoint.

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

espn_wnba_season_week(week = 5, season = 2025)

Get ESPN WNBA Season Weeks Index

Description

Returns the list of week IDs for one (WNBA season x season-type). WNBA uses a week structure inherited from ESPN's schema, but week-level rankings are populated only for college (MBB / WBB).

Usage

espn_wnba_season_weeks(
  season = most_recent_wnba_season(),
  season_type = c(2L, 3L),
  ...
)

Arguments

season

Season year. Defaults to most recent WNBA season.

season_type

Season-type id (2 = regular (default), 3 = postseason).

...

Additional arguments; currently unused.

Value

A tibble with one row per week.

col_name types description
league character League slug.
season integer Season year.
season_type integer Season-type id.
week integer Week number (1-based).
ref character ⁠$ref⁠ URL for the week detail.

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

espn_wnba_season_weeks(season = 2025)

Get ESPN WNBA Seasons

Description

Get ESPN WNBA Seasons

Get ESPN WNBA Seasons

Usage

espn_wnba_seasons(...)

Arguments

...

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 season.

col_name types description
season integer Season identifier (4-digit year or 'YYYY-YY' string).
start_date character Start date (YYYY-MM-DD).
end_date character End date (YYYY-MM-DD).
display_name character Display name.
season_type_count integer Count of season type.

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

espn_wnba_seasons()

Get ESPN WNBA Standings

Description

Get ESPN WNBA Standings

Usage

espn_wnba_standings(year)

Arguments

year

Either numeric or character (YYYY)

Value

Returns a tibble

col_name types description
team_id integer Unique team identifier.
team character Team-side label or team identifier.
avgpointsagainst numeric Avgpointsagainst.
avgpointsfor numeric Avgpointsfor.
clincher numeric Clincher.
differential numeric Differential.
divisionwinpercent numeric Divisionwinpercent.
gamesbehind numeric Gamesbehind.
leaguewinpercent numeric Leaguewinpercent.
losses numeric Total losses.
playoffseed numeric Playoffseed.
streak numeric Current streak (e.g. 'W3' for three-game win streak).
winpercent numeric Winpercent.
wins numeric Total wins.
leaguestandings character Leaguestandings.
home character Home.
road character Road.
vsdiv character Vsdiv.
vsconf character Vsconf.
lasttengames character Lasttengames.

Author(s)

Geoff Hutchinson

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

try(espn_wnba_standings(year = 2021))

Get ESPN WNBA Team Detail

Description

Get ESPN WNBA Team Detail

Get ESPN WNBA Team Detail

Usage

espn_wnba_team(team_id, season = most_recent_wnba_season(), ...)

Arguments

team_id

ESPN team identifier (character or numeric).

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 = ...) – see ?wehoop for details.

Value

A named list of data frames: Info, Record, NextEvent, StandingSummary, Coaches.

Info

col_name types description
id character Unique play identifcation number
uid character ESPN UID string (universal identifier).
slug character URL-safe identifier.
abbreviation character Short abbreviation.
display_name character Display name.
short_display_name character Short display name.
name character Display name.
nickname character Team or athlete nickname.
location character Filter results by game location.
color character Primary color (hex without leading '#').
alternate_color character Alternate color (hex without leading '#').
logo character Team or league logo URL.

Record

col_name types description
type character Record type / category.
summary character Summary.
stats list Stats.

NextEvent

col_name types description
id character Unique play identifcation number
date character Date in YYYY-MM-DD format.
name character Display name.
short_name character Short display name.

StandingSummary

col_name types description
standing_summary character Standing summary.

Coaches

col_name types description
id character Unique play identifcation number
first_name character Player's first name.
last_name character Player's last name.
experience integer Years of professional experience.

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

espn_wnba_team(team_id = "17", season = 2025)

Get ESPN's WNBA team box data

Description

Get ESPN's WNBA team box data

Usage

espn_wnba_team_box(game_id)

Arguments

game_id

Game ID

Value

Returns a team boxscore data frame

Team

col_name types description
game_id integer Unique game identifier.
season integer Season identifier (4-digit year or 'YYYY-YY' string).
season_type integer Season type (1=pre-season, 2=regular season, 3=postseason, 4=off-season for ESPN; or string label for WNBA Stats).
game_date Date Game date (YYYY-MM-DD).
game_date_time POSIXct Game start date/time (ISO 8601).
team_id integer Unique team identifier.
team_uid character ESPN universal team identifier (UID format 's:40~l:...~t:...').
team_slug character URL-safe team identifier (e.g. 'lasvegas-aces' / 'aces').
team_location character Team city or location string.
team_name character Full team display name (e.g. 'Las Vegas Aces').
team_abbreviation character Short team abbreviation (e.g. 'LAS').
team_display_name character Full team display name.
team_short_display_name character Short team display name (e.g. 'Aces').
team_color character Team primary color (hex without leading '#').
team_alternate_color character Team alternate color (hex without leading '#').
team_logo character Team logo image URL.
team_home_away character Team home away.
team_score integer Team's score / final score.
team_winner logical TRUE if the team won this game.
assists integer Total assists.
blocks integer Total blocks.
defensive_rebounds integer Defensive rebounds.
field_goal_pct numeric Field goal percentage (0-1).
field_goals_made integer Field goals made (2-pt + 3-pt).
field_goals_attempted integer Field goal attempts (2-pt + 3-pt).
flagrant_fouls integer Total flagrant fouls.
fouls integer Personal fouls.
free_throw_pct numeric Free throw percentage (0-1).
free_throws_made integer Free throws made.
free_throws_attempted integer Free throw attempts.
largest_lead character Largest lead during the game.
offensive_rebounds integer Offensive rebounds.
steals integer Total steals.
team_turnovers integer Team turnovers (turnovers credited to the team rather than a player).
technical_fouls integer Total technical fouls.
three_point_field_goal_pct numeric Three-point field goal percentage (0-1).
three_point_field_goals_made integer Three-point field goals made.
three_point_field_goals_attempted integer Three-point field goal attempts.
total_rebounds integer Total rebounds.
total_technical_fouls integer Total technical fouls (player + team).
total_turnovers integer Total turnovers (player + team).
turnovers integer Total turnovers.
opponent_team_id integer Unique identifier for the opponent team.
opponent_team_uid character Opponent team uid.
opponent_team_slug character Opponent team slug.
opponent_team_location character Opponent team city / location.
opponent_team_name character Opponent team display name.
opponent_team_abbreviation character Opponent team abbreviation.
opponent_team_display_name character Opponent team full display name.
opponent_team_short_display_name character Opponent team short display name.
opponent_team_color character Opponent team primary color (hex).
opponent_team_alternate_color character Opponent team alternate color (hex).
opponent_team_logo character Opponent team logo URL.
opponent_team_score integer Opponent team's score.

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

try(espn_wnba_team_box(game_id = 401244185))

Get ESPN WNBA Team Injuries

Description

Get ESPN WNBA Team Injuries

Get ESPN WNBA Team Injuries

Usage

espn_wnba_team_injuries(team_id, ...)

Arguments

team_id

ESPN team identifier (character or numeric; passed as-is). Use espn_wnba_teams() to look up team IDs. Example: "17" (Las Vegas Aces).

...

Currently unused; reserved for future argument threading.

Value

Returns a tibble of injury records for the specified WNBA team. Returns an empty tibble (zero rows) when the team has no reported injuries.

Injuries

col_name types description
team_id character Unique team identifier.
athlete_id character Unique athlete identifier (ESPN).
athlete_name character Athlete display name (ESPN).
position character Listed roster position (G, F, C, etc.).
status character Status label.
date character Date in YYYY-MM-DD format.
type character Record type / category.
side character Side label (e.g. 'home', 'away', or 'overUnder').
returns_at character Returns at.
short_comment character Short comment.
long_comment character Long-form play / event comment.

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

espn_wnba_team_injuries(team_id = "17")

Get ESPN WNBA Team Leaders

Description

Get ESPN WNBA Team Leaders

Get ESPN WNBA Team Leaders

Usage

espn_wnba_team_leaders(team_id, season = most_recent_wnba_season(), ...)

Arguments

team_id

ESPN team identifier (character or numeric).

season

Season year (numeric). Defaults to the most recent WNBA season.

...

Additional arguments; currently unused.

Value

A single long-format tibble (one row per category-rank-athlete).

col_name types description
team_id character Unique team identifier.
season integer Season identifier (4-digit year or 'YYYY-YY' string).
category character Category label.
display_name character Display name.
athlete_id character Unique athlete identifier (ESPN).
athlete_name character Athlete display name (ESPN).
value numeric Numeric or string value field.
rank integer Whether to include statistical ranks in the returned table.

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

espn_wnba_team_leaders(team_id = "17", season = 2025)

Get ESPN WNBA Team News

Description

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.

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).

Value

Returns a tibble of team news articles.

col_name types description
id character Unique play identifcation number
type character Record type / category.
headline character News headline.
description character Long-form description text.
published character Publication timestamp (ISO 8601).
premium logical Premium.
byline character News article byline / author.
link_web character Web link / URL.
league_id character League identifier ('10' = WNBA).

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

espn_wnba_team_news(team_id = "17", limit = 5)

Get ESPN WNBA Team Record (Per Season Type)

Description

Returns the long-format record breakdown for a WNBA team in one season and season-type. Each row is one record category.

Usage

espn_wnba_team_record(
  team_id,
  season = most_recent_wnba_season(),
  season_type = c(2L, 3L),
  ...
)

Arguments

team_id

ESPN team identifier.

season

Season year. Defaults to most recent WNBA season.

season_type

Integer (2 = regular season default).

...

Additional arguments; currently unused.

Value

A tibble with one row per record category.

col_name types description
league character League slug ("wnba").
team_id character ESPN team identifier.
season integer Season year.
season_type integer Season type (1/2/3).
record_id character Record sub-id.
name character Internal record name.
abbreviation character Abbreviation.
display_name character Display name.
short_display_name character Short display.
description character Description.
type character Record type code.
summary character W-L summary.
display_value character Display value.
value numeric Win percentage (0-1).

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

espn_wnba_team_record(team_id = 17, season = 2025)

Get ESPN WNBA Team Record Detail (Long Format)

Description

Returns one team's record detail in long format: one row per stat in the record's stats[] array. Use espn_wnba_team_record() to enumerate available record_id values per team-season (overall / home / away / conference + per-opponent breakdowns).

Usage

espn_wnba_team_record_detail(team_id, season, record_id, season_type = 2L, ...)

Arguments

team_id

ESPN team identifier.

season

Season year (numeric).

record_id

Record identifier (from espn_wnba_team_record() index).

season_type

Integer season type: 1 = preseason, 2 = regular (default), 3 = postseason.

...

Additional arguments; currently unused.

Value

A long tibble.

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

espn_wnba_team_record_detail(team_id = 17, season = 2024, record_id = 0)

Get ESPN WNBA Team Roster

Description

Get ESPN WNBA Team Roster

Get ESPN WNBA Team Roster

Usage

espn_wnba_team_roster(team_id, season = most_recent_wnba_season(), ...)

Arguments

team_id

ESPN team identifier (character or numeric).

season

Season year (numeric). Defaults to the most recent WNBA season.

...

Additional arguments; currently unused.

Value

A single tibble with one row per athlete.

col_name types description
athlete_id character Unique athlete identifier (ESPN).
full_name character Player's full name.
jersey character Jersey number worn by the player.
position_abbrev character Abbreviation for position.
position_name character Listed roster position ('Guard', 'Forward', 'Center').
height character Player height (string e.g. '6-2' or inches).
weight character Player weight in pounds.
age character Player age (in years).
birth_date character Date of birth (YYYY-MM-DD).
birth_place character Place of birth.
headshot character Headshot image URL.
link_web character Web link / URL.
status character Status label.
team_id character Unique team identifier.
season integer Season identifier (4-digit year or 'YYYY-YY' string).

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

espn_wnba_team_roster(team_id = "17", season = 2025)

Get ESPN WNBA Team Schedule

Description

Get ESPN WNBA Team Schedule

Get ESPN WNBA Team Schedule

Usage

espn_wnba_team_schedule(
  team_id,
  season = most_recent_wnba_season(),
  season_type = 2,
  ...
)

Arguments

team_id

ESPN team identifier (character or numeric).

season

Season year (numeric). Defaults to the most recent WNBA season.

season_type

Integer season type: 1 = preseason, 2 = regular (default), 3 = postseason.

...

Additional arguments; currently unused.

Value

A single tibble with one row per event.

col_name types description
event_id character Unique event / game identifier (ESPN).
season integer Season identifier (4-digit year or 'YYYY-YY' string).
season_type integer Season type (1=pre-season, 2=regular season, 3=postseason, 4=off-season for ESPN; or string label for WNBA Stats).
week integer Week number within the season.
date character Date in YYYY-MM-DD format.
name character Display name.
short_name character Short display name.
opponent_id character Unique identifier for opponent.
opponent_abbrev character Abbreviation for opponent.
home_away character Game venue label ('home' or 'away').
neutral_site logical Neutral site.
conference_competition logical Conference competition.
venue_id character Unique venue identifier.
venue_name character Venue name.
venue_city character Venue city.
venue_state character Venue state / region.
broadcast character Broadcast information string.
result character Result.
team_score character Team's score / final score.
opponent_score character Opponent score.
winner logical Winner.

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

espn_wnba_team_schedule(team_id = "17", season = 2025)

Get ESPN WNBA Team-in-Season Profile

Description

Era-correct team identity for a WNBA franchise in a specific season, plus the available ⁠$ref⁠ URLs for deeper resources (record, statistics, leaders, coaches, transactions, etc.). Backed by the core-v2 endpoint sports.core.api.espn.com/v2/sports/basketball/leagues/wnba/seasons/{season}/teams/{team_id}.

Historical depth goes back to 1997 (WNBA founding). Older seasons return fewer ⁠$ref⁠ keys; missing refs become NA.

Usage

espn_wnba_team_season_profile(team_id, season = most_recent_wnba_season(), ...)

Arguments

team_id

ESPN team identifier (character or numeric).

season

Season year (numeric). Defaults to the most recent WNBA season.

...

Additional arguments; currently unused.

Value

A single-row tibble with team identity scalars and ⁠_ref⁠ URL columns. Selected columns:

col_name types description
id character ESPN team identifier.
guid character Stable cross-league team GUID.
uid character ESPN UID string.
slug character URL-safe identifier.
location character Team city/region (e.g. "Indiana").
name character Team name (e.g. "Fever").
abbreviation character Short abbreviation (e.g. "IND").
display_name character Full display name.
short_display_name character Short display name.
color character Primary color (hex, no leading '#').
alternate_color character Alternate color (hex, no leading '#').
is_active logical Whether the team was active in this season.
season integer Season year.
logo character Primary logo URL.
logo_dark character Dark-mode logo URL.
record_ref character ⁠$ref⁠ to team record resource.
statistics_ref character ⁠$ref⁠ to team statistics resource.
leaders_ref character ⁠$ref⁠ to team leaders resource.
coaches_ref character ⁠$ref⁠ to team coaches resource.
transactions_ref character ⁠$ref⁠ to team transactions resource.
franchise_ref character ⁠$ref⁠ to franchise resource.

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

espn_wnba_team_season_profile(team_id = "17", season = 2025)

Get ESPN WNBA Team Roster (Per-Season, core-v2)

Description

Returns the per-season team roster as a tibble of athlete IDs from seasons/{y}/teams/{id}/athletes. Distinct from espn_wnba_team_roster() which targets a site-v2 endpoint optimized for the current season; this core-v2 variant is era-correct and available back to ESPN's earliest season for each league.

Usage

espn_wnba_team_season_roster(team_id, season = most_recent_wnba_season(), ...)

Arguments

team_id

ESPN team identifier.

season

Season year. Defaults to most recent WNBA season.

...

Additional arguments; currently unused.

Details

Get ESPN WNBA Team Roster (Per-Season, core-v2)

Value

A tibble with one row per athlete on the season roster.

col_name types description
league character League slug.
team_id character ESPN team id.
season integer Season year.
athlete_id character ESPN athlete id.
ref character ⁠$ref⁠ URL to athlete-in-season detail.

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

espn_wnba_team_season_roster(team_id = 17, season = 2025)

Get ESPN WNBA Team Season Statistics (Long Format with Rank)

Description

Returns the full team-season-type statistics sheet for one WNBA team in long format: one row per (category x stat). Each row carries the team's league rank for that stat where ESPN provides it (rank + rank_display_value). Complements espn_wnba_team_record() (W-L only) with the full stat package.

Usage

espn_wnba_team_season_statistics(
  team_id,
  season = most_recent_wnba_season(),
  season_type = 2L,
  ...
)

Arguments

team_id

ESPN team identifier.

season

Season year (numeric). Defaults to the most recent WNBA season.

season_type

Integer season type: 1 = preseason, 2 = regular (default), 3 = postseason.

...

Additional arguments; currently unused.

Value

A long tibble with one row per (category x stat).

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

espn_wnba_team_season_statistics(team_id = 17, season = 2024)

Get ESPN WNBA team stats data

Description

Get ESPN WNBA team stats data

Usage

espn_wnba_team_stats(team_id, year, season_type = "regular", total = FALSE)

Arguments

team_id

Team ID

year

Year

season_type

(character, default: regular): Season type - regular or postseason

total

(boolean, default: FALSE): Totals

Value

Returns a tibble with the team stats data

col_name types description
team_id integer Unique team identifier.
team_guid character ESPN team GUID.
team_uid character ESPN universal team identifier (UID format 's:40~l:...~t:...').
team_sdr integer ESPN team SDR identifier.
team_slug character URL-safe team identifier (e.g. 'lasvegas-aces' / 'aces').
team_location character Team city or location string.
team_name character Full team display name (e.g. 'Las Vegas Aces').
team_abbreviation character Short team abbreviation (e.g. 'LAS').
team_display_name character Full team display name.
team_short_display_name character Short team display name (e.g. 'Aces').
team_color character Team primary color (hex without leading '#').
team_alternate_color character Team alternate color (hex without leading '#').
team_is_active logical TRUE if the team is currently active.
team_is_all_star logical TRUE if the row represents an All-Star team.
logo_href character Team or league logo URL.
logo_dark_href character Logo URL for dark backgrounds.
defensive_blocks numeric Short for blocked shot, number of times when a defensive player legally deflects a field goal attempt from an offensive player.
defensive_defensive_rebounds numeric The number of times when the defense obtains the possession of the ball after a missed shot by the offense.
defensive_steals numeric The number of times a defensive player forced a turnover by intercepting or deflecting a pass or a dribble of an offensive player.
defensive_avg_defensive_rebounds numeric The average defensive rebounds per game.
defensive_avg_blocks numeric The average blocks per game.
defensive_avg_steals numeric The average steals per game.
defensive_avg48defensive_rebounds numeric The average number of defensive rebounds per 48 minutes.
defensive_avg48blocks numeric The average number of blocks per 48 minutes.
defensive_avg48steals numeric The average number of steals per 48 minutes.
general_disqualifications numeric The number of times a player reached the foul limit.
general_flagrant_fouls numeric The number of fouls that the officials thought were unnecessary or excessive.
general_fouls numeric The number of times a player had illegal contact with the opponent.
general_ejections numeric The number of times a player or coach is removed from the game as a result of a serious offense.
general_technical_fouls numeric The number of times an player or coach was called for a technical foul (unsportsmanlike conduct or violations).
general_rebounds numeric The total number of rebounds (offensive and defensive).
general_avg_minutes numeric The average number of minutes per game.
general_nba_rating numeric General nba rating.
general_plus_minus numeric A player's estimated on-court impact on team performance measured in point differential per 100 possessions.
general_game_day_of_year numeric The day of the season on which this game falls; if it's the 15th day of the regular season in Nov, the game day of year is 15 (ie, game day of year != day of year).
general_avg_rebounds numeric The average rebounds per game.
general_avg_fouls numeric The average fouls committed per game.
general_avg_flagrant_fouls numeric The average number of flagrant fouls per game.
general_avg_technical_fouls numeric The average number of technical fouls per game.
general_avg_ejections numeric The average ejections per game.
general_avg_disqualifications numeric The average number of disqualifications per game.
general_assist_turnover_ratio numeric The average number of assists a player or team records per turnover.
general_steal_foul_ratio numeric The average number of steals a player or team records per foul committed.
general_block_foul_ratio numeric The average number of blocks a player or record per foul committed.
general_avg_team_rebounds numeric The average number of rebounds for a team per game.
general_total_rebounds numeric The total number of rebounds for a team or player.
general_total_technical_fouls numeric The total number of technical fouls for a team or player.
general_team_assist_turnover_ratio numeric The number of assists per turnover for a team.
general_team_rebounds numeric The total number of rebounds for a team.
general_steal_turnover_ratio numeric The number of steals per turnover.
general_avg48rebounds numeric The average number of rebounds per 48 minutes.
general_avg48fouls numeric The average number of fouls committed per 48 minutes.
general_avg48flagrant_fouls numeric The average number of flagrant fouls committed per 48 minutes.
general_avg48technical_fouls numeric The average number of technical fouls committed per 48 minutes.
general_avg48ejections numeric The average number of ejections per 48 minutes.
general_avg48disqualifications numeric The average number of disqualifications per 48 minutes.
general_games_played numeric Games Played.
general_games_started numeric The number of games started by an athlete.
general_double_double numeric The number of times double digit values were accumulated in 2 of the following categories: points, rebounds, assists, steals, and blocked shots.
general_triple_double numeric The number of times double digit values were accumulated in 3 of the following categories: points, rebounds, assists, steals, and blocked shots.
offensive_assists numeric The number of times a player who passes the ball to a teammate in a way that leads to a score by field goal, meaning that he or she was "assisting" in the basket. There is some judgment involved in deciding whether a passer should be credited with an assist.
offensive_field_goals numeric Field Goal makes and attempts.
offensive_field_goals_attempted numeric The number of times a 2pt field goal was attempted.
offensive_field_goals_made numeric The number of times a 2pt field goal was made.
offensive_field_goal_pct numeric The ratio of field goals made to field goals attempted: FGM / FGA.
offensive_free_throws numeric Free Throw makes and attempts.
offensive_free_throw_pct numeric The ratio of free throws made to free throws attempted: FTM / FTA.
offensive_free_throws_attempted numeric The number of times a free throw was attempted.
offensive_free_throws_made numeric The number of times a free throw was made.
offensive_offensive_rebounds numeric The number of times when the offense obtains the possession of the ball after a missed shot.
offensive_points numeric The number of points scored.
offensive_turnovers numeric The number of times a player loses possession to the other team.
offensive_three_point_pct numeric The ratio of 3pt field goals made to 3pt field goals attempted: 3PM / 3PA.
offensive_three_point_field_goals_attempted numeric The number of times a 3pt field goal was attempted.
offensive_three_point_field_goals_made numeric The number of times a 3pt field goal was made.
offensive_team_turnovers numeric The number of turnovers for the team.
offensive_total_turnovers numeric The number of turnovers plus team turnovers for the team.
offensive_points_in_paint numeric The amount of points scored in the area known as "the Paint"(the rectangle between the foul line and the baseline).
offensive_brick_index numeric How many points a player costs his team with his shooting compared with the league average on a per-40-minute basis. ((52.8 - TS%) x (FGA + (FTA x 0.44))) / (Min/40) .
offensive_avg_field_goals_made numeric The average field goals made per game.
offensive_avg_field_goals_attempted numeric The average field goals attempted per game.
offensive_avg_three_point_field_goals_made numeric The average three point field goals made per game.
offensive_avg_three_point_field_goals_attempted numeric The average three point field goals attempted per game.
offensive_avg_free_throws_made numeric The average free throw shots made per game.
offensive_avg_free_throws_attempted numeric The average free throw shots attempted per game.
offensive_avg_points numeric The average number of points scored per game.
offensive_avg_points_allowed numeric The average number of points allowed per game.
offensive_avg_offensive_rebounds numeric The average offensive rebounds per game.
offensive_avg_assists numeric The average assists per game.
offensive_avg_turnovers numeric The average turnovers committed per game.
offensive_offensive_rebound_pct numeric The percentage of the number of times they obtain the possession of the ball after a missed shot.
offensive_estimated_possessions numeric An estimation of the number of possessions for a team or player.
offensive_avg_estimated_possessions numeric The average number of estimated possessions per game for a team or player.
offensive_points_per_estimated_possessions numeric The number of points per estimated possession for a team or player.
offensive_avg_team_turnovers numeric The average number of turnovers for a team per game.
offensive_avg_total_turnovers numeric The average number of total turnovers for a team per game.
offensive_three_point_field_goal_pct numeric The ratio of 3pt field goals made to 3pt field goals attempted: 3PM / 3PA.
offensive_two_point_field_goals_made numeric The number of 2-point field goals made for a team or player.
offensive_two_point_field_goals_attempted numeric The number of 2-point field goals attempted for a team or player.
offensive_avg_two_point_field_goals_made numeric The number of 2-point field goals made per game for a team or player.
offensive_avg_two_point_field_goals_attempted numeric The number of 2-point field goals attempted per game for a team or player.
offensive_two_point_field_goal_pct numeric The percentage of 2-points fields goals made by a team or player.
offensive_shooting_efficiency numeric The efficiency with which a team or player shoots the basketball.
offensive_scoring_efficiency numeric The efficiency with which a team or player scores the basketball.
offensive_avg48field_goals_made numeric The average number of fieldgoals made per 48 minutes.
offensive_avg48field_goals_attempted numeric The average number of fieldgoals attempted per 48 minutes.
offensive_avg48three_point_field_goals_made numeric The average per number of 3-Pointers made per 48 minutes.
offensive_avg48three_point_field_goals_attempted numeric The average number of 3-pointers attempted per 48 minutes.
offensive_avg48free_throws_made numeric The average number of Free Throws made per 48 minutes.
offensive_avg48free_throws_attempted numeric The average number of free throws attempted per 48 minutes.
offensive_avg48points numeric The average number of points scored per 48 minutes.
offensive_avg48offensive_rebounds numeric The average number of offenseive rebounds per 48 minutes.
offensive_avg48assists numeric The average number of assists per 48 minutes.
offensive_avg48turnovers numeric The average number of turnovers per 48 minutes.

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

try(espn_wnba_team_stats(team_id = 17, year = 2020))

Get ESPN's WNBA team names and ids

Description

Get ESPN's WNBA team names and ids

Usage

espn_wnba_teams()

Value

Returns a tibble

col_name types description
team_id integer Unique team identifier.
team character Team-side label or team identifier.
mascot character Team mascot.
display_name character Display name.
short_name character Short display name.
abbreviation character Short abbreviation.
color character Primary color (hex without leading '#').
alternate_color character Alternate color (hex without leading '#').
logo character Team or league logo URL.
logo_dark character Logo dark.

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

try(espn_wnba_teams())

Get ESPN WNBA Transactions

Description

Get ESPN WNBA Transactions

Get ESPN WNBA Transactions

Usage

espn_wnba_transactions(season = most_recent_wnba_season(), limit = 100, ...)

Arguments

season

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

limit

Maximum number of transactions to return (integer). Default 100.

...

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

Details

Calls the ESPN site-v2 endpoint ⁠https://site.api.espn.com/apis/site/v2/sports/basketball/wnba/transactions?season={year}&limit={limit}⁠. Releases have a NULL to_team_id; those are stored as NA. Returns an empty tibble rather than erroring when no transactions are available.

Value

A wehoop_data tibble with one row per transaction:

col_name types description
transaction_id character Unique identifier for transaction.
date character Date in YYYY-MM-DD format.
type character Record type / category.
description character Long-form description text.
team_id character Unique team identifier.
athlete_id character Unique athlete identifier (ESPN).
athlete_name character Athlete display name (ESPN).
from_team_id character Unique identifier for from team.
to_team_id character Unique identifier for to team.

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_venues(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

espn_wnba_transactions(season = 2025, limit = 10)

Get ESPN WNBA Venues

Description

Get ESPN WNBA Venues

Get ESPN WNBA Venues

Usage

espn_wnba_venues(...)

Arguments

...

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 venue.

col_name types description
venue_id character Unique venue identifier.
name character Display name.
full_name character Player's full name.
address_city character Address city.
address_state character Address state.
capacity integer Capacity.
indoor logical Indoor.
grass logical Grass.
images_url character URL for images.

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_week_ranking(), espn_wnba_week_rankings()

Examples

espn_wnba_venues()

Get ESPN WNBA Per-Week Ranking Detail

Description

Returns the long-format ranked teams for one (season x season-type x week x ranking-source). WNBA typically returns an empty tibble.

Usage

espn_wnba_week_ranking(
  ranking_id,
  week,
  season = most_recent_wnba_season(),
  season_type = 2L,
  ...
)

Arguments

ranking_id

Ranking source id (1 = AP, 2 = Coaches, etc.).

week

Week number.

season

Season year. Defaults to most recent WNBA season.

season_type

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

...

Additional arguments; currently unused.

Details

Get ESPN WNBA Per-Week Ranking Detail

Value

A tibble with one row per ranked team (typically 25).

col_name types description
league character League slug.
season integer Season year.
season_type integer Season-type id.
week integer Week number.
ranking_id character ESPN ranking id.
name character Ranking name (e.g. "AP Top 25").
short_name character Short name.
type character Ranking type code.
headline character Full headline.
date character Date of the ranking.
current integer Current rank.
previous integer Previous-week rank.
points numeric Voting points.
first_place_votes integer First-place vote count.
trend character Trend indicator (e.g. "+3", "-2", "-").
record_summary character Team's record at time of poll (e.g. "20-2").
team_id character ESPN team id.
team_ref character ⁠$ref⁠ to the team-in-season resource.
last_updated character Last-updated timestamp.

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_rankings()

Examples

espn_wnba_week_ranking(ranking_id = 1, week = 5, season = 2025)

Get ESPN WNBA Per-Week Rankings Index

Description

Returns the index of ranking sources available for one (WNBA season x season-type x week). WNBA does not publish weekly rankings, so this typically returns an empty tibble; the wrapper is provided for symmetry with college (MBB / WBB).

Usage

espn_wnba_week_rankings(
  week,
  season = most_recent_wnba_season(),
  season_type = 2L,
  ...
)

Arguments

week

Week number.

season

Season year. Defaults to most recent WNBA season.

season_type

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

...

Additional arguments; currently unused.

Details

Get ESPN WNBA Per-Week Rankings Index

Value

A tibble with one row per ranking source.

col_name types description
league character League slug.
season integer Season year.
season_type integer Season-type id.
week integer Week number.
ranking_id character ESPN ranking id.
ref character ⁠$ref⁠ URL for the ranked-teams detail.

Author(s)

Saiem Gilani

See Also

Other ESPN WNBA Functions: espn_wnba_athletes_index(), espn_wnba_award(), espn_wnba_calendar(), espn_wnba_coach_season(), espn_wnba_coaches(), espn_wnba_conferences(), espn_wnba_draft(), espn_wnba_draft_athlete_detail(), espn_wnba_draft_athletes(), espn_wnba_draft_pick(), espn_wnba_draft_rounds(), espn_wnba_draft_status(), espn_wnba_franchise(), espn_wnba_franchises(), espn_wnba_freeagents(), espn_wnba_futures(), espn_wnba_game_all(), espn_wnba_game_broadcasts(), espn_wnba_game_odds(), espn_wnba_game_official_detail(), espn_wnba_game_officials(), espn_wnba_game_play(), espn_wnba_game_play_personnel(), espn_wnba_game_player_box(), espn_wnba_game_powerindex(), espn_wnba_game_predictor(), espn_wnba_game_probabilities(), espn_wnba_game_propbets(), espn_wnba_game_rosters(), espn_wnba_game_situation(), espn_wnba_game_team_leaders(), espn_wnba_game_team_linescores(), espn_wnba_game_team_records(), espn_wnba_game_team_roster(), espn_wnba_game_team_roster_entry(), espn_wnba_game_team_score(), espn_wnba_game_team_statistics(), espn_wnba_injuries(), espn_wnba_leaders(), espn_wnba_news(), espn_wnba_pbp(), espn_wnba_player_awards(), espn_wnba_player_box(), espn_wnba_player_career_stats(), espn_wnba_player_eventlog(), espn_wnba_player_eventlog_v2(), espn_wnba_player_gamelog(), espn_wnba_player_info(), espn_wnba_player_overview(), espn_wnba_player_seasons(), espn_wnba_player_splits(), espn_wnba_player_statisticslog(), espn_wnba_player_stats(), espn_wnba_player_stats_v3(), espn_wnba_position(), espn_wnba_positions(), espn_wnba_powerindex(), espn_wnba_scoreboard(), espn_wnba_season_awards(), espn_wnba_season_draft(), espn_wnba_season_group(), espn_wnba_season_group_children(), espn_wnba_season_group_teams(), espn_wnba_season_groups(), espn_wnba_season_info(), espn_wnba_season_leaders(), espn_wnba_season_ranking(), espn_wnba_season_rankings(), espn_wnba_season_type(), espn_wnba_season_types(), espn_wnba_season_week(), espn_wnba_season_weeks(), espn_wnba_seasons(), espn_wnba_standings(), espn_wnba_team(), espn_wnba_team_box(), espn_wnba_team_injuries(), espn_wnba_team_leaders(), espn_wnba_team_news(), espn_wnba_team_record(), espn_wnba_team_record_detail(), espn_wnba_team_roster(), espn_wnba_team_schedule(), espn_wnba_team_season_profile(), espn_wnba_team_season_roster(), espn_wnba_team_season_statistics(), espn_wnba_team_stats(), espn_wnba_teams(), espn_wnba_transactions(), espn_wnba_venues(), espn_wnba_week_ranking()

Examples

espn_wnba_week_rankings(week = 5, season = 2025)

Parse ESPN WBB PBP, helper function

Description

Parse ESPN WBB PBP, helper function

Usage

helper_espn_wbb_pbp(resp)

Arguments

resp

Response object from the ESPN WBB game summary endpoint

Value

Returns a tibble


Parse ESPN WBB Player Box, helper function

Description

Parse ESPN WBB Player Box, helper function

Usage

helper_espn_wbb_player_box(resp)

Arguments

resp

Response object from the ESPN WBB game summary endpoint

Value

Returns a tibble


Parse ESPN WBB Team Box, helper function

Description

Parse ESPN WBB Team Box, helper function

Usage

helper_espn_wbb_team_box(resp)

Arguments

resp

Response object from the ESPN WBB game summary endpoint

Value

Returns a tibble


Parse ESPN WNBA PBP, helper function

Description

Parse ESPN WNBA PBP, helper function

Usage

helper_espn_wnba_pbp(resp)

Arguments

resp

Response object from the ESPN WNBA game summary endpoint

Value

Returns a tibble


Parse ESPN WNBA Player Box, helper function

Description

Parse ESPN WNBA Player Box, helper function

Usage

helper_espn_wnba_player_box(resp)

Arguments

resp

Response object from the ESPN WNBA game summary endpoint

Value

Returns a tibble


Parse ESPN WNBA Team Box, helper function

Description

Parse ESPN WNBA Team Box, helper function

Usage

helper_espn_wnba_team_box(resp)

Arguments

resp

Response object from the ESPN WNBA game summary endpoint

Value

Returns a tibble


Load wehoop WBB Game Rosters

Description

load_wbb_game_rosters_manifest() returns the per-season manifest CSV (season, row_count, generated_at_utc, source_endpoint) for the game rosters release tag without downloading any season's full data.

Loads per-game rosters scraped from ESPN women's college basketball box scores. One row per athlete-team-game triple, with athlete identifiers, jersey, position, starter flag, and DNP status. Backed by the wehoop-wbb-data pipeline that reads raw JSONs from wehoop-wbb-raw and publishes parquet/rds artifacts to the espn_womens_college_basketball_game_rosters release tag.

Usage

load_wbb_game_rosters_manifest()

load_wbb_game_rosters(
  seasons = most_recent_wbb_season(),
  ...,
  dbConnection = NULL,
  tablename = NULL
)

Arguments

seasons

A vector of 4-digit years associated with given women's college basketball seasons. (Min: 2002)

...

Additional arguments passed to an underlying function that writes the season data into a database.

dbConnection

A DBIConnection object, as returned by DBI::dbConnect()

tablename

The name of the game rosters data table within the database

Value

Returns a wehoop_data tibble with one row per athlete-team-game.

col_name types description
game_id character Unique game identifier.
season integer Season identifier (4-digit year or 'YYYY-YY' string).
team_id character Unique team identifier.
athlete_id character Unique athlete identifier (ESPN).
athlete_display_name character Athlete display name (full).
athlete_position character Athlete position.
athlete_jersey character Athlete jersey number.
starter logical TRUE if the player was in the starting lineup; FALSE otherwise.
did_not_play logical TRUE if the player did not appear in the game.

See Also

Other WBB loader functions: load_wbb_officials_manifest(), load_wbb_player_stats_manifest(), load_wbb_rosters_manifest(), load_wbb_shots_manifest(), load_wbb_standings_manifest(), load_wbb_team_stats_manifest()

Examples

try(load_wbb_game_rosters(seasons = most_recent_wbb_season()))

Load wehoop WBB Officials

Description

load_wbb_officials_manifest() returns the per-season manifest CSV (season, row_count, generated_at_utc, source_endpoint) for the officials release tag without downloading any season's full data.

Loads game-level officials data scraped from ESPN women's college basketball summary feeds. One row per official-game pair. Backed by the wehoop-wbb-data pipeline that reads raw JSONs from wehoop-wbb-raw and publishes parquet/rds artifacts to the espn_womens_college_basketball_officials release tag.

Usage

load_wbb_officials_manifest()

load_wbb_officials(
  seasons = most_recent_wbb_season(),
  ...,
  dbConnection = NULL,
  tablename = NULL
)

Arguments

seasons

A vector of 4-digit years associated with given women's college basketball seasons. (Min: 2002)

...

Additional arguments passed to an underlying function that writes the season data into a database.

dbConnection

A DBIConnection object, as returned by DBI::dbConnect()

tablename

The name of the officials data table within the database

Value

Returns a wehoop_data tibble with one row per official-game pair.

col_name types description
game_id character Unique game identifier.
season integer Season identifier (4-digit year or 'YYYY-YY' string).
official_id character Unique official / referee identifier.
display_name character Display name.
full_name character Player's full name.
first_name character Player's first name.
last_name character Player's last name.
position character Listed roster position (G, F, C, etc.).
order integer Display order within the result set.

See Also

Other WBB loader functions: load_wbb_game_rosters_manifest(), load_wbb_player_stats_manifest(), load_wbb_rosters_manifest(), load_wbb_shots_manifest(), load_wbb_standings_manifest(), load_wbb_team_stats_manifest()

Examples

try(load_wbb_officials(seasons = most_recent_wbb_season()))

Load wehoop women's college basketball play-by-play

Description

helper that loads multiple seasons from the data repo either into memory or writes it into a db using some forwarded arguments in the dots

Usage

load_wbb_pbp(
  seasons = most_recent_wbb_season(),
  ...,
  dbConnection = NULL,
  tablename = NULL
)

Arguments

seasons

A vector of 4-digit years associated with given women's college basketball seasons. (Min: 2004)

...

Additional arguments passed to an underlying function that writes the season data into a database (used by update_wbb_db()).

dbConnection

A DBIConnection object, as returned by DBI::dbConnect()

tablename

The name of the play by play data table within the database

Value

A dataframe with 55 columns:

col_name description
shooting_play Logical value (TRUE/FALSE) indicating whether the play was a shooting play
sequence_number Sequence number is supposed to represent a shot-possession, examine the last two numbers to see if there are multiple events that occur within the same shot-possession. A shot-possession is basically any sequence of plays until there is a shot, change in possession, and probably things like technical fouls and the like. So as soon as a shot goes up, a new sequence starts regardless, even if the shooting team retains possession via offensive or deadball rebound. The first portion of the number is usually time related (i.e. the numeric representation of when the sequence started, from a seconds remaining in the period perspective or so)
period_display_value Long form of period (1st quarter, 2nd Quarter, OT, etc.)
period_number The numeric period of play in the game
home_score Home score at the time of the play
scoring_play Logical value (TRUE/FALSE) indicating whether the play was a play on which the offense scored
clock_display_value Time left within the period
team_id Unique team identification number for the offensive team
type_id Unique play type identifcation number
type_text Play type text description
away_score Away score at the time of the play
id Unique play identifcation number
text Text description of the play
score_value The points value of the shot taken
participants_0_athlete_id Unique player identification number
participants_1_athlete_id Unique player identification number
season Season of the game
season_type Season type of the game, 1 is pre-season, 2 is regular season, 3 is post-season, 4 is off-season
away_team_id Unique away team identification number
away_team_name Away team name
away_team_mascot Away team mascot
away_team_abbrev Text abbreviation for the away team
away_team_name_alt Alternate versions of the away team abbreviation
home_team_id Unique home team identification number
home_team_name home team name
home_team_mascot home team mascot
home_team_abbrev Text abbreviation for the home team
home_team_name_alt Alternate versions of the home team abbreviation
home_team_spread The game spread with respect to the home team
game_spread Game spread in (-X Team) format
home_favorite Logical (TRUE/FALSE) indicating whether the home team is favored
game_spread_available Logical (TRUE/FALSE) indicating whether the spread was available from ESPN. Basically, I would just not recommend using any of the spread information, I think I defaulted a lot of them to -2.5 for the home team. Most games probably do not have spread information. This column should really be listed first
game_id Unique identifier for the game event
qtr Quarter of the game
time Time left within the period
clock_minutes Clock minutes split from seconds for developer convenience
clock_seconds Clock seconds split from minutes for developer convenience
half Half of the game
game_half Half of the game
lag_qtr A lag column on the quarter
lead_qtr A lead column on the quarter
lag_game_half A lag column on the half
lead_game_half A lead column on the half
start_quarter_seconds_remaining Quarter seconds remaining at the start of the play (these are more or less code artifacts from other sports, but may eventually be used more seriously)
start_half_seconds_remaining Game half seconds remaining at the start of the play (these are more or less code artifacts from other sports, but may eventually be used more seriously)
start_game_seconds_remaining Game seconds remaining at the start of the play (''')
game_play_number Game play number
end_quarter_seconds_remaining Quarter seconds remaining at the end of the play (''')
end_half_seconds_remaining Game half seconds remaining at the end of the play (''')
end_game_seconds_remaining Game seconds remaining at the end of the play (''')
period Period of the game
coordinate_x The entire scale is a rectangle of size 25x47, intended as a half-court representation of the basketball court (i.e. on the side of the offense), with each coordinate unit representing a foot. It appears that the basket is roughly represented as the (25, 0) point. This is a nonsensical definition when considering that the basket overhangs the court, with the backboard aligned 48 inches from the baseline, then the center of the hoop being roughly 11 inches from there. This is an idiosyncracy of either sensor placement or software and data entry. Use your best judgement in making your charts, I think you will find that making some translations will be helpful.
coordinate_y
week Apparently there are weeks
media_id Where did you come from

Examples

try(load_wbb_pbp())

Load wehoop women's college basketball player box scores

Description

helper that loads multiple seasons from the data repo either into memory or writes it into a db using some forwarded arguments in the dots

Usage

load_wbb_player_box(
  seasons = most_recent_wbb_season(),
  ...,
  dbConnection = NULL,
  tablename = NULL
)

Arguments

seasons

A vector of 4-digit years associated with given women's college basketball seasons. (Min: 2006)

...

Additional arguments passed to an underlying function that writes the season data into a database (used by update_wbb_db()).

dbConnection

A DBIConnection object, as returned by DBI::dbConnect()

tablename

The name of the play by play data table within the database

Value

Returns a tibble

Examples

try(load_wbb_player_box())

Load wehoop WBB Player Season Stats

Description

load_wbb_player_stats_manifest() returns the per-season manifest CSV (season, row_count, generated_at_utc, source_endpoint) for the player season stats release tag without downloading any season's full data.

Loads season-level player statistics scraped from ESPN. One row per athlete-team-season-statistic-grouping. Backed by the wehoop-wbb-data pipeline that reads raw JSONs from wehoop-wbb-raw and publishes parquet/rds artifacts to the espn_womens_college_basketball_player_season_stats release tag.

Usage

load_wbb_player_stats_manifest()

load_wbb_player_stats(
  seasons = most_recent_wbb_season(),
  ...,
  dbConnection = NULL,
  tablename = NULL
)

Arguments

seasons

A vector of 4-digit years associated with given women's college basketball seasons. (Min: 2002)

...

Additional arguments passed to an underlying function that writes the season data into a database.

dbConnection

A DBIConnection object, as returned by DBI::dbConnect()

tablename

The name of the player season stats table within the database

Value

Returns a wehoop_data tibble of player season stats.

See Also

Other WBB loader functions: load_wbb_game_rosters_manifest(), load_wbb_officials_manifest(), load_wbb_rosters_manifest(), load_wbb_shots_manifest(), load_wbb_standings_manifest(), load_wbb_team_stats_manifest()

Examples

try(load_wbb_player_stats(seasons = most_recent_wbb_season()))

Load wehoop WBB Rosters

Description

load_wbb_rosters_manifest() returns the per-season manifest CSV (columns: season, row_count, generated_at_utc, source_endpoint) describing which seasons are currently published to the release tag, without downloading any season's full data.

Loads season-level team rosters scraped from ESPN. One row per athlete-team-season triple. Backed by the wehoop-wbb-data pipeline that reads raw JSONs from wehoop-wbb-raw and publishes parquet/rds artifacts to the espn_womens_college_basketball_rosters release tag.

Usage

load_wbb_rosters_manifest()

load_wbb_rosters(
  seasons = most_recent_wbb_season(),
  ...,
  dbConnection = NULL,
  tablename = NULL
)

Arguments

seasons

A vector of 4-digit years associated with given women's college basketball seasons. (Min: 2002)

...

Additional arguments passed to an underlying function that writes the season data into a database.

dbConnection

A DBIConnection object, as returned by DBI::dbConnect()

tablename

The name of the rosters data table within the database

Value

Returns a wehoop_data tibble with one row per athlete-team-season.

See Also

Other WBB loader functions: load_wbb_game_rosters_manifest(), load_wbb_officials_manifest(), load_wbb_player_stats_manifest(), load_wbb_shots_manifest(), load_wbb_standings_manifest(), load_wbb_team_stats_manifest()

Examples

try(load_wbb_rosters(seasons = most_recent_wbb_season()))

Load wehoop women's college basketball schedule

Description

helper that loads multiple seasons from the data repo either into memory or writes it into a db using some forwarded arguments in the dots

Usage

load_wbb_schedule(
  seasons = most_recent_wbb_season(),
  ...,
  dbConnection = NULL,
  tablename = NULL
)

Arguments

seasons

A vector of 4-digit years associated with given women's college basketball seasons. (Min: 2002)

...

Additional arguments passed to an underlying function that writes the season data into a database (used by update_wbb_db()).

dbConnection

A DBIConnection object, as returned by DBI::dbConnect()

tablename

The name of the play by play data table within the database

Value

Returns a tibble

Examples

try(load_wbb_schedule())

Load wehoop WBB Shots

Description

load_wbb_shots_manifest() returns the per-season manifest CSV (season, row_count, generated_at_utc, source_endpoint) for the shots release tag without downloading any season's full data.

Loads shot events parsed from ESPN women's college basketball play-by-play feeds. One row per shot attempt (made or missed), with court coordinates and shot metadata. Backed by the wehoop-wbb-data pipeline that reads raw JSONs from wehoop-wbb-raw and publishes parquet/rds artifacts to the espn_womens_college_basketball_shots release tag.

Usage

load_wbb_shots_manifest()

load_wbb_shots(
  seasons = most_recent_wbb_season(),
  ...,
  dbConnection = NULL,
  tablename = NULL
)

Arguments

seasons

A vector of 4-digit years associated with given women's college basketball seasons. (Min: 2002)

...

Additional arguments passed to an underlying function that writes the season data into a database.

dbConnection

A DBIConnection object, as returned by DBI::dbConnect()

tablename

The name of the shots data table within the database

Value

Returns a wehoop_data tibble with one row per shot attempt.

col_name types description
game_id character Unique game identifier.
season integer Season identifier (4-digit year or 'YYYY-YY' string).
period_number integer Numeric period (1-4 for quarters; 5+ for OT).
clock_display_value character Game clock display string (e.g. '8:32').
team_id character Unique team identifier.
athlete_id_1 character Primary athlete identifier (e.g. shooter).
athlete_id_2 character Secondary athlete identifier (e.g. assister / fouler).
type_id character Type identifier (numeric).
type_text character Display text for the type field.
scoring_play logical TRUE if the play resulted in points scored.
score_value integer Point value of the play (2 / 3 / 1).
coordinate_x numeric X coordinate on the court (half-court layout).
coordinate_y numeric Y coordinate on the court (half-court layout).
coordinate_x_raw numeric X coordinate as returned by the API before any adjustment.
coordinate_y_raw numeric Y coordinate as returned by the API before any adjustment.

See Also

Other WBB loader functions: load_wbb_game_rosters_manifest(), load_wbb_officials_manifest(), load_wbb_player_stats_manifest(), load_wbb_rosters_manifest(), load_wbb_standings_manifest(), load_wbb_team_stats_manifest()

Examples

try(load_wbb_shots(seasons = most_recent_wbb_season()))

Load wehoop WBB Standings

Description

load_wbb_standings_manifest() returns the per-season manifest CSV (season, row_count, generated_at_utc, source_endpoint) for the standings release tag without downloading any season's full data.

Loads season-level conference and overall standings scraped from ESPN. One row per team-season. Backed by the wehoop-wbb-data pipeline that reads raw JSONs from wehoop-wbb-raw and publishes parquet/rds artifacts to the espn_womens_college_basketball_standings release tag.

Usage

load_wbb_standings_manifest()

load_wbb_standings(
  seasons = most_recent_wbb_season(),
  ...,
  dbConnection = NULL,
  tablename = NULL
)

Arguments

seasons

A vector of 4-digit years associated with given women's college basketball seasons. (Min: 2002)

...

Additional arguments passed to an underlying function that writes the season data into a database.

dbConnection

A DBIConnection object, as returned by DBI::dbConnect()

tablename

The name of the standings data table within the database

Value

Returns a wehoop_data tibble of team standings.

col_name types description
season integer Season identifier (4-digit year or 'YYYY-YY' string).
season_type integer Season type (1=pre-season, 2=regular season, 3=postseason, 4=off-season for ESPN; or string label for WNBA Stats).
team_id character Unique team identifier.
team_slug character URL-safe team identifier (e.g. 'lasvegas-aces' / 'aces').
team_location character Team city or location string.
team_name character Full team display name (e.g. 'Las Vegas Aces').
team_abbreviation character Short team abbreviation (e.g. 'LAS').
team_display_name character Full team display name.
conference_id character Conference identifier.
conference_name character Full conference name.
wins integer Total wins.
losses integer Total losses.
win_percent numeric Win percent.
games_played integer Games played.
points_for numeric Points for.
points_against numeric Points allowed.
point_differential numeric Point differential.
streak character Current streak (e.g. 'W3' for three-game win streak).

See Also

Other WBB loader functions: load_wbb_game_rosters_manifest(), load_wbb_officials_manifest(), load_wbb_player_stats_manifest(), load_wbb_rosters_manifest(), load_wbb_shots_manifest(), load_wbb_team_stats_manifest()

Examples

try(load_wbb_standings(seasons = most_recent_wbb_season()))

Load wehoop women's college basketball team box scores

Description

helper that loads multiple seasons from the data repo either into memory or writes it into a db using some forwarded arguments in the dots

Usage

load_wbb_team_box(
  seasons = most_recent_wbb_season(),
  ...,
  dbConnection = NULL,
  tablename = NULL
)

Arguments

seasons

A vector of 4-digit years associated with given women's college basketball seasons. (Min: 2006)

...

Additional arguments passed to an underlying function that writes the season data into a database (used by update_wbb_db()).

dbConnection

A DBIConnection object, as returned by DBI::dbConnect()

tablename

The name of the play by play data table within the database

Value

Returns a tibble

Examples

try(load_wbb_team_box())

Load wehoop WBB Team Season Stats

Description

load_wbb_team_stats_manifest() returns the per-season manifest CSV (season, row_count, generated_at_utc, source_endpoint) for the team season stats release tag without downloading any season's full data.

Loads season-level team statistics scraped from ESPN. One row per team-season-statistic-grouping. Backed by the wehoop-wbb-data pipeline that reads raw JSONs from wehoop-wbb-raw and publishes parquet/rds artifacts to the espn_womens_college_basketball_team_season_stats release tag.

Usage

load_wbb_team_stats_manifest()

load_wbb_team_stats(
  seasons = most_recent_wbb_season(),
  ...,
  dbConnection = NULL,
  tablename = NULL
)

Arguments

seasons

A vector of 4-digit years associated with given women's college basketball seasons. (Min: 2002)

...

Additional arguments passed to an underlying function that writes the season data into a database.

dbConnection

A DBIConnection object, as returned by DBI::dbConnect()

tablename

The name of the team season stats table within the database

Value

Returns a wehoop_data tibble of team season stats.

col_name types description
season integer Season identifier (4-digit year or 'YYYY-YY' string).
season_type integer Season type (1=pre-season, 2=regular season, 3=postseason, 4=off-season for ESPN; or string label for WNBA Stats).
team_id character Unique team identifier.
team_slug character URL-safe team identifier (e.g. 'lasvegas-aces' / 'aces').
team_location character Team city or location string.
team_name character Full team display name (e.g. 'Las Vegas Aces').
team_abbreviation character Short team abbreviation (e.g. 'LAS').
team_display_name character Full team display name.
category character Category label.
stat_name character Stat name.
stat_display_name character Stat display name.
stat_value numeric Stat value.
stat_display_value character Stat display value.
stat_rank integer League/season rank for stat.

See Also

Other WBB loader functions: load_wbb_game_rosters_manifest(), load_wbb_officials_manifest(), load_wbb_player_stats_manifest(), load_wbb_rosters_manifest(), load_wbb_shots_manifest(), load_wbb_standings_manifest()

Examples

try(load_wbb_team_stats(seasons = most_recent_wbb_season()))

Load wehoop WNBA Draft

Description

load_wnba_draft_manifest() returns the per-season manifest CSV (season, row_count, generated_at_utc, source_endpoint) for the draft release tag without downloading any season's full data.

Loads season-level WNBA draft picks scraped from ESPN. One row per pick. Backed by the wehoop-wnba-data pipeline that reads raw JSONs from wehoop-wnba-raw and publishes parquet/rds artifacts to the espn_wnba_draft release tag.

Usage

load_wnba_draft_manifest()

load_wnba_draft(
  seasons = most_recent_wnba_season(),
  ...,
  dbConnection = NULL,
  tablename = NULL
)

Arguments

seasons

A vector of 4-digit years associated with given WNBA draft seasons. (Min: 2002)

...

Additional arguments passed to an underlying function that writes the season data into a database.

dbConnection

A DBIConnection object, as returned by DBI::dbConnect()

tablename

The name of the draft data table within the database

Value

Returns a wehoop_data tibble of WNBA draft picks.

col_name types description
season integer Season identifier (4-digit year or 'YYYY-YY' string).
round integer Tournament / playoff round.
pick integer Pick.
overall integer Overall.
team_id character Unique team identifier.
team_display_name character Full team display name.
athlete_id character Unique athlete identifier (ESPN).
athlete_display_name character Athlete display name (full).
athlete_position character Athlete position.
college_id character Unique identifier for college.
college_name character College name.

See Also

Other WNBA loader functions: load_wnba_game_rosters_manifest(), load_wnba_officials_manifest(), load_wnba_player_stats_manifest(), load_wnba_rosters_manifest(), load_wnba_shots_manifest(), load_wnba_standings_manifest(), load_wnba_team_stats_manifest()

Examples

try(load_wnba_draft(seasons = most_recent_wnba_season()))

Load wehoop WNBA Game Rosters

Description

load_wnba_game_rosters_manifest() returns the per-season manifest CSV (season, row_count, generated_at_utc, source_endpoint) for the game rosters release tag without downloading any season's full data.

Loads per-game rosters scraped from ESPN WNBA box scores. One row per athlete-team-game triple, with athlete identifiers, jersey, position, starter flag, and DNP status. Backed by the wehoop-wnba-data pipeline that reads raw JSONs from wehoop-wnba-raw and publishes parquet/rds artifacts to the espn_wnba_game_rosters release tag.

Usage

load_wnba_game_rosters_manifest()

load_wnba_game_rosters(
  seasons = most_recent_wnba_season(),
  ...,
  dbConnection = NULL,
  tablename = NULL
)

Arguments

seasons

A vector of 4-digit years associated with given WNBA seasons. (Min: 2002)

...

Additional arguments passed to an underlying function that writes the season data into a database.

dbConnection

A DBIConnection object, as returned by DBI::dbConnect()

tablename

The name of the game rosters data table within the database

Value

Returns a wehoop_data tibble with one row per athlete-team-game.

col_name types description
game_id character Unique game identifier.
season integer Season identifier (4-digit year or 'YYYY-YY' string).
team_id character Unique team identifier.
athlete_id character Unique athlete identifier (ESPN).
athlete_display_name character Athlete display name (full).
athlete_position character Athlete position.
athlete_jersey character Athlete jersey number.
starter logical TRUE if the player was in the starting lineup; FALSE otherwise.
did_not_play logical TRUE if the player did not appear in the game.

See Also

Other WNBA loader functions: load_wnba_draft_manifest(), load_wnba_officials_manifest(), load_wnba_player_stats_manifest(), load_wnba_rosters_manifest(), load_wnba_shots_manifest(), load_wnba_standings_manifest(), load_wnba_team_stats_manifest()

Examples

try(load_wnba_game_rosters(seasons = most_recent_wnba_season()))

Load wehoop WNBA Officials

Description

load_wnba_officials_manifest() returns the per-season manifest CSV (season, row_count, generated_at_utc, source_endpoint) for the officials release tag without downloading any season's full data.

Loads game-level officials data scraped from ESPN WNBA summary feeds. One row per official-game pair. Backed by the wehoop-wnba-data pipeline that reads raw JSONs from wehoop-wnba-raw and publishes parquet/rds artifacts to the espn_wnba_officials release tag.

Usage

load_wnba_officials_manifest()

load_wnba_officials(
  seasons = most_recent_wnba_season(),
  ...,
  dbConnection = NULL,
  tablename = NULL
)

Arguments

seasons

A vector of 4-digit years associated with given WNBA seasons. (Min: 2002)

...

Additional arguments passed to an underlying function that writes the season data into a database.

dbConnection

A DBIConnection object, as returned by DBI::dbConnect()

tablename

The name of the officials data table within the database

Value

Returns a wehoop_data tibble with one row per official-game pair.

col_name types description
game_id character Unique game identifier.
season integer Season identifier (4-digit year or 'YYYY-YY' string).
official_id character Unique official / referee identifier.
display_name character Display name.
full_name character Player's full name.
first_name character Player's first name.
last_name character Player's last name.
position character Listed roster position (G, F, C, etc.).
order integer Display order within the result set.

See Also

Other WNBA loader functions: load_wnba_draft_manifest(), load_wnba_game_rosters_manifest(), load_wnba_player_stats_manifest(), load_wnba_rosters_manifest(), load_wnba_shots_manifest(), load_wnba_standings_manifest(), load_wnba_team_stats_manifest()

Examples

try(load_wnba_officials(seasons = most_recent_wnba_season()))

Load wehoop WNBA play-by-play

Description

helper that loads multiple seasons from the data repo either into memory or writes it into a db using some forwarded arguments in the dots

Usage

load_wnba_pbp(
  seasons = most_recent_wnba_season(),
  ...,
  dbConnection = NULL,
  tablename = NULL
)

Arguments

seasons

A vector of 4-digit years associated with given WNBA seasons. (Min: 2002)

...

Additional arguments passed to an underlying function that writes the season data into a database (used by update_wnba_db()).

dbConnection

A DBIConnection object, as returned by DBI::dbConnect()

tablename

The name of the play by play data table within the database

Value

A dataframe with 42 columns

col_name description
shooting_play Logical value (TRUE/FALSE) indicating whether the play was a shooting play
sequence_number Sequence number is supposed to represent a shot-possession, examine the last two numbers to see if there are multiple events that occur within the same shot-possession. A shot-possession is basically any sequence of plays until there is a shot, change in possession, and probably things like technical fouls and the like. So as soon as a shot goes up, a new sequence starts regardless, even if the shooting team retains possession via offensive or deadball rebound. The first portion of the number is usually time related (i.e. the numeric representation of when the sequence started, from a seconds remaining in the period perspective or so)
period_display_value Long form of period (1st quarter, 2nd Quarter, OT, etc.)
period_number The numeric period of play in the game
home_score Home score at the time of the play
coordinate_x The entire scale is a rectangle of size 25x47, intended as a half-court representation of the basketball court (i.e. on the side of the offense), with each coordinate unit representing a foot. It appears that the basket is roughly represented as the (25, 0) point. This is a nonsensical definition when considering that the basket overhangs the court, with the backboard aligned 48 inches from the baseline, then the center of the hoop being roughly 11 inches from there. This is an idiosyncracy of either sensor placement or software and data entry. Use your best judgement in making your charts, I think you will find that making some translations will be helpful.
coordinate_y
scoring_play Logical value (TRUE/FALSE) indicating whether the play was a play on which the offense scored
clock_display_value Time left within the period
team_id Unique team identification number for the offensive team
type_id Unique play type identifcation number
type_text Play type text description
away_score Away score at the time of the play
id Unique play identifcation number
text Text description of the play
score_value The points value of the shot taken
participants_0_athlete_id Unique player identification number
participants_1_athlete_id Unique player identification number
participants_2_athlete_id Unique player identification number
type_abbreviation Play type abbreviation
season Season of the game
season_type Season type of the game, 1 is pre-season, 2 is regular season, 3 is post-season, 4 is off-season
away_team_id Unique away team identification number
away_team_name Away team name
away_team_mascot Away team mascot
away_team_abbrev Text abbreviation for the away team
away_team_name_alt Alternate versions of the away team abbreviation
home_team_id Unique home team identification number
home_team_name home team name
home_team_mascot home team mascot
home_team_abbrev Text abbreviation for the home team
home_team_name_alt Alternate versions of the home team abbreviation
home_team_spread The game spread with respect to the home team
game_spread Game spread in (-X Team) format. There are almost none, I would recommend not trusting any of these three columns
home_favorite Logical (TRUE/FALSE) indicating whether the home team is favored
clock_minutes Clock minutes split from seconds for developer convenience
clock_seconds Clock seconds split from minutes for developer convenience
half Half of the game
lag_half A lag column on the half
lead_half A lead column on the half
game_play_number Game play number
game_id Unique identifier for the game event

Examples

try(load_wnba_pbp())

Load wehoop WNBA player box scores

Description

helper that loads multiple seasons from the data repo either into memory or writes it into a db using some forwarded arguments in the dots

Usage

load_wnba_player_box(
  seasons = most_recent_wnba_season(),
  ...,
  dbConnection = NULL,
  tablename = NULL
)

Arguments

seasons

A vector of 4-digit years associated with given WNBA seasons. (Min: 2002)

...

Additional arguments passed to an underlying function that writes the season data into a database (used by update_wnba_db()).

dbConnection

A DBIConnection object, as returned by DBI::dbConnect()

tablename

The name of the player box data table within the database

Value

Returns a tibble

Examples

try(load_wnba_player_box())

Load wehoop WNBA Player Season Stats

Description

load_wnba_player_stats_manifest() returns the per-season manifest CSV (season, row_count, generated_at_utc, source_endpoint) for the player season stats release tag without downloading any season's full data.

Loads season-level WNBA player statistics scraped from ESPN. One row per athlete-team-season-statistic-grouping. Backed by the wehoop-wnba-data pipeline that reads raw JSONs from wehoop-wnba-raw and publishes parquet/rds artifacts to the espn_wnba_player_season_stats release tag.

Usage

load_wnba_player_stats_manifest()

load_wnba_player_stats(
  seasons = most_recent_wnba_season(),
  ...,
  dbConnection = NULL,
  tablename = NULL
)

Arguments

seasons

A vector of 4-digit years associated with given WNBA seasons. (Min: 2002)

...

Additional arguments passed to an underlying function that writes the season data into a database.

dbConnection

A DBIConnection object, as returned by DBI::dbConnect()

tablename

The name of the player season stats table within the database

Value

Returns a wehoop_data tibble of player season stats.

See Also

Other WNBA loader functions: load_wnba_draft_manifest(), load_wnba_game_rosters_manifest(), load_wnba_officials_manifest(), load_wnba_rosters_manifest(), load_wnba_shots_manifest(), load_wnba_standings_manifest(), load_wnba_team_stats_manifest()

Examples

try(load_wnba_player_stats(seasons = most_recent_wnba_season()))

Load wehoop WNBA Rosters

Description

load_wnba_rosters_manifest() returns the per-season manifest CSV (season, row_count, generated_at_utc, source_endpoint) for the rosters release tag without downloading any season's full data.

Loads season-level WNBA team rosters scraped from ESPN. One row per athlete-team-season triple. Backed by the wehoop-wnba-data pipeline that reads raw JSONs from wehoop-wnba-raw and publishes parquet/rds artifacts to the espn_wnba_rosters release tag.

Usage

load_wnba_rosters_manifest()

load_wnba_rosters(
  seasons = most_recent_wnba_season(),
  ...,
  dbConnection = NULL,
  tablename = NULL
)

Arguments

seasons

A vector of 4-digit years associated with given WNBA seasons. (Min: 2002)

...

Additional arguments passed to an underlying function that writes the season data into a database.

dbConnection

A DBIConnection object, as returned by DBI::dbConnect()

tablename

The name of the rosters data table within the database

Value

Returns a wehoop_data tibble with one row per athlete-team-season.

See Also

Other WNBA loader functions: load_wnba_draft_manifest(), load_wnba_game_rosters_manifest(), load_wnba_officials_manifest(), load_wnba_player_stats_manifest(), load_wnba_shots_manifest(), load_wnba_standings_manifest(), load_wnba_team_stats_manifest()

Examples

try(load_wnba_rosters(seasons = most_recent_wnba_season()))

Load wehoop WNBA schedules

Description

helper that loads multiple seasons from the data repo either into memory or writes it into a db using some forwarded arguments in the dots

Usage

load_wnba_schedule(
  seasons = most_recent_wnba_season(),
  ...,
  dbConnection = NULL,
  tablename = NULL
)

Arguments

seasons

A vector of 4-digit years associated with given WNBA seasons. (Min: 2002)

...

Additional arguments passed to an underlying function that writes the season data into a database (used by update_wnba_db()).

dbConnection

A DBIConnection object, as returned by DBI::dbConnect()

tablename

The name of the schedule data table within the database

Value

Returns a tibble

Examples

try(load_wnba_schedule())

Load wehoop WNBA Shots

Description

load_wnba_shots_manifest() returns the per-season manifest CSV (season, row_count, generated_at_utc, source_endpoint) for the shots release tag without downloading any season's full data.

Loads shot events parsed from ESPN WNBA play-by-play feeds. One row per shot attempt (made or missed), with court coordinates and shot metadata. Backed by the wehoop-wnba-data pipeline that reads raw JSONs from wehoop-wnba-raw and publishes parquet/rds artifacts to the espn_wnba_shots release tag.

Usage

load_wnba_shots_manifest()

load_wnba_shots(
  seasons = most_recent_wnba_season(),
  ...,
  dbConnection = NULL,
  tablename = NULL
)

Arguments

seasons

A vector of 4-digit years associated with given WNBA seasons. (Min: 2002)

...

Additional arguments passed to an underlying function that writes the season data into a database.

dbConnection

A DBIConnection object, as returned by DBI::dbConnect()

tablename

The name of the shots data table within the database

Value

Returns a wehoop_data tibble with one row per shot attempt.

col_name types description
game_id character Unique game identifier.
season integer Season identifier (4-digit year or 'YYYY-YY' string).
period_number integer Numeric period (1-4 for quarters; 5+ for OT).
clock_display_value character Game clock display string (e.g. '8:32').
team_id character Unique team identifier.
athlete_id_1 character Primary athlete identifier (e.g. shooter).
athlete_id_2 character Secondary athlete identifier (e.g. assister / fouler).
type_id character Type identifier (numeric).
type_text character Display text for the type field.
scoring_play logical TRUE if the play resulted in points scored.
score_value integer Point value of the play (2 / 3 / 1).
coordinate_x numeric X coordinate on the court (half-court layout).
coordinate_y numeric Y coordinate on the court (half-court layout).
coordinate_x_raw numeric X coordinate as returned by the API before any adjustment.
coordinate_y_raw numeric Y coordinate as returned by the API before any adjustment.

See Also

Other WNBA loader functions: load_wnba_draft_manifest(), load_wnba_game_rosters_manifest(), load_wnba_officials_manifest(), load_wnba_player_stats_manifest(), load_wnba_rosters_manifest(), load_wnba_standings_manifest(), load_wnba_team_stats_manifest()

Examples

try(load_wnba_shots(seasons = most_recent_wnba_season()))

Load wehoop WNBA Standings

Description

load_wnba_standings_manifest() returns the per-season manifest CSV (season, row_count, generated_at_utc, source_endpoint) for the standings release tag without downloading any season's full data.

Loads season-level WNBA standings scraped from ESPN. One row per team-season. Backed by the wehoop-wnba-data pipeline that reads raw JSONs from wehoop-wnba-raw and publishes parquet/rds artifacts to the espn_wnba_standings release tag.

Usage

load_wnba_standings_manifest()

load_wnba_standings(
  seasons = most_recent_wnba_season(),
  ...,
  dbConnection = NULL,
  tablename = NULL
)

Arguments

seasons

A vector of 4-digit years associated with given WNBA seasons. (Min: 2002)

...

Additional arguments passed to an underlying function that writes the season data into a database.

dbConnection

A DBIConnection object, as returned by DBI::dbConnect()

tablename

The name of the standings data table within the database

Value

Returns a wehoop_data tibble of team standings.

col_name types description
season integer Season identifier (4-digit year or 'YYYY-YY' string).
season_type integer Season type (1=pre-season, 2=regular season, 3=postseason, 4=off-season for ESPN; or string label for WNBA Stats).
team_id character Unique team identifier.
team_slug character URL-safe team identifier (e.g. 'lasvegas-aces' / 'aces').
team_location character Team city or location string.
team_name character Full team display name (e.g. 'Las Vegas Aces').
team_abbreviation character Short team abbreviation (e.g. 'LAS').
team_display_name character Full team display name.
conference_id character Conference identifier.
conference_name character Full conference name.
wins integer Total wins.
losses integer Total losses.
win_percent numeric Win percent.
games_played integer Games played.
points_for numeric Points for.
points_against numeric Points allowed.
point_differential numeric Point differential.
streak character Current streak (e.g. 'W3' for three-game win streak).

See Also

Other WNBA loader functions: load_wnba_draft_manifest(), load_wnba_game_rosters_manifest(), load_wnba_officials_manifest(), load_wnba_player_stats_manifest(), load_wnba_rosters_manifest(), load_wnba_shots_manifest(), load_wnba_team_stats_manifest()

Examples

try(load_wnba_standings(seasons = most_recent_wnba_season()))

Load wehoop WNBA Stats Coaches

Description

Loads season-level WNBA coaching staff data scraped from the WNBA Stats API. One row per coach-team-season triple. Backed by the wehoop-wnba-stats-data pipeline that reads raw JSONs from wehoop-wnba-stats-raw and publishes parquet/rds artifacts to the wnba_stats_coaches release tag.

load_wnba_stats_coaches_manifest() returns the per-season manifest CSV (season, row_count, generated_at_utc, source_endpoint) for the WNBA Stats coaches release tag without downloading any season's full data.

Usage

load_wnba_stats_coaches(
  seasons = most_recent_wnba_stats_season(),
  ...,
  dbConnection = NULL,
  tablename = NULL
)

load_wnba_stats_coaches_manifest()

Arguments

seasons

A vector of 4-digit years associated with given WNBA seasons. (Min: 1997)

...

Additional arguments passed to an underlying function that writes the season data into a database.

dbConnection

A DBIConnection object, as returned by DBI::dbConnect()

tablename

The name of the coaches data table within the database

Value

Returns a wehoop_data tibble with one row per coach-team-season.

See Also

Other WNBA Stats loader functions: load_wnba_stats_draft(), load_wnba_stats_game_rosters(), load_wnba_stats_lineups(), load_wnba_stats_officials(), load_wnba_stats_pbp(), load_wnba_stats_player_game_logs(), load_wnba_stats_player_stats(), load_wnba_stats_rosters(), load_wnba_stats_schedule(), load_wnba_stats_shots(), load_wnba_stats_standings(), load_wnba_stats_team_stats()

Examples

try(load_wnba_stats_coaches(seasons = most_recent_wnba_stats_season()))

Load wehoop WNBA Stats Draft

Description

Loads season-level WNBA draft picks scraped from the WNBA Stats API (drafthistory-style outputs). One row per pick. Backed by the wehoop-wnba-stats-data pipeline that reads raw JSONs from wehoop-wnba-stats-raw and publishes parquet/rds artifacts to the wnba_stats_draft release tag.

load_wnba_stats_draft_manifest() returns the per-season manifest CSV (season, row_count, generated_at_utc, source_endpoint) for the WNBA Stats draft release tag without downloading any season's full data.

Usage

load_wnba_stats_draft(
  seasons = most_recent_wnba_stats_season(),
  ...,
  dbConnection = NULL,
  tablename = NULL
)

load_wnba_stats_draft_manifest()

Arguments

seasons

A vector of 4-digit years associated with given WNBA draft seasons. (Min: 1997)

...

Additional arguments passed to an underlying function that writes the season data into a database.

dbConnection

A DBIConnection object, as returned by DBI::dbConnect()

tablename

The name of the draft data table within the database

Value

Returns a wehoop_data tibble of WNBA draft picks.

col_name types description
season integer Season identifier (4-digit year or 'YYYY-YY' string).
person_id character Unique player identifier (V3 endpoints).
player_name character Player name.
round_number integer Numeric round.
round_pick integer Round pick.
overall_pick integer Overall pick.
team_id character Unique team identifier.
team_city character Team city or region (e.g. 'Las Vegas').
team_name character Full team display name (e.g. 'Las Vegas Aces').
team_abbreviation character Short team abbreviation (e.g. 'LAS').
organization character Organization.
organization_type character Organization type.
player_profile_flag character Player profile flag.

See Also

Other WNBA Stats loader functions: load_wnba_stats_coaches(), load_wnba_stats_game_rosters(), load_wnba_stats_lineups(), load_wnba_stats_officials(), load_wnba_stats_pbp(), load_wnba_stats_player_game_logs(), load_wnba_stats_player_stats(), load_wnba_stats_rosters(), load_wnba_stats_schedule(), load_wnba_stats_shots(), load_wnba_stats_standings(), load_wnba_stats_team_stats()

Examples

try(load_wnba_stats_draft(seasons = most_recent_wnba_stats_season()))

Load wehoop WNBA Stats Game Rosters

Description

Loads per-game rosters scraped from the WNBA Stats API (boxscoretraditionalv3-style outputs). One row per athlete-team-game triple with jersey, position, starter flag, and DNP status. Backed by the wehoop-wnba-stats-data pipeline that reads raw JSONs from wehoop-wnba-stats-raw and publishes parquet/rds artifacts to the wnba_stats_game_rosters release tag.

load_wnba_stats_game_rosters_manifest() returns the per-season manifest CSV (season, row_count, generated_at_utc, source_endpoint) for the WNBA Stats game rosters release tag without downloading any season's full data.

Usage

load_wnba_stats_game_rosters(
  seasons = most_recent_wnba_stats_season(),
  ...,
  dbConnection = NULL,
  tablename = NULL
)

load_wnba_stats_game_rosters_manifest()

Arguments

seasons

A vector of 4-digit years associated with given WNBA seasons. (Min: 1997)

...

Additional arguments passed to an underlying function that writes the season data into a database.

dbConnection

A DBIConnection object, as returned by DBI::dbConnect()

tablename

The name of the game rosters data table within the database

Value

Returns a wehoop_data tibble with one row per athlete-team-game.

col_name types description
season integer Season identifier (4-digit year or 'YYYY-YY' string).
game_id character Unique game identifier.
team_id character Unique team identifier.
team_city character Team city or region (e.g. 'Las Vegas').
team_name character Full team display name (e.g. 'Las Vegas Aces').
team_tricode character Three-letter team code (e.g. 'LAS' / 'NYL').
athlete_id character Unique athlete identifier (ESPN).
first_name character Player's first name.
family_name character Player's family / last name.
name_i character Initialed name (e.g. 'A. Wilson').
player_slug character URL-safe player identifier.
jersey_num character Jersey number worn by the player.
position character Listed roster position (G, F, C, etc.).
starter logical TRUE if the player was in the starting lineup; FALSE otherwise.
did_not_play logical TRUE if the player did not appear in the game.
status character Status label.
comment character Player status / inactive reason (e.g. 'DNP - Coach's Decision', 'Inactive').

See Also

Other WNBA Stats loader functions: load_wnba_stats_coaches(), load_wnba_stats_draft(), load_wnba_stats_lineups(), load_wnba_stats_officials(), load_wnba_stats_pbp(), load_wnba_stats_player_game_logs(), load_wnba_stats_player_stats(), load_wnba_stats_rosters(), load_wnba_stats_schedule(), load_wnba_stats_shots(), load_wnba_stats_standings(), load_wnba_stats_team_stats()

Examples

try(load_wnba_stats_game_rosters(seasons = most_recent_wnba_stats_season()))

Load wehoop WNBA Stats Lineups

Description

Loads season-level WNBA lineup statistics scraped from the WNBA Stats API (leaguedashlineups-style outputs). Backed by the wehoop-wnba-stats-data pipeline that reads raw JSONs from wehoop-wnba-stats-raw and publishes parquet/rds artifacts to the wnba_stats_lineups release tag.

load_wnba_stats_lineups_manifest() returns the per-season manifest CSV (season, row_count, generated_at_utc, source_endpoint) for the WNBA Stats lineups release tag without downloading any season's full data.

Usage

load_wnba_stats_lineups(
  seasons = most_recent_wnba_stats_season(),
  ...,
  dbConnection = NULL,
  tablename = NULL
)

load_wnba_stats_lineups_manifest()

Arguments

seasons

A vector of 4-digit years associated with given WNBA seasons. (Min: 1997)

...

Additional arguments passed to an underlying function that writes the season data into a database.

dbConnection

A DBIConnection object, as returned by DBI::dbConnect()

tablename

The name of the lineups data table within the database

Value

Returns a wehoop_data tibble of lineup stats.

See Also

Other WNBA Stats loader functions: load_wnba_stats_coaches(), load_wnba_stats_draft(), load_wnba_stats_game_rosters(), load_wnba_stats_officials(), load_wnba_stats_pbp(), load_wnba_stats_player_game_logs(), load_wnba_stats_player_stats(), load_wnba_stats_rosters(), load_wnba_stats_schedule(), load_wnba_stats_shots(), load_wnba_stats_standings(), load_wnba_stats_team_stats()

Examples

try(load_wnba_stats_lineups(seasons = most_recent_wnba_stats_season()))

Load wehoop WNBA Stats Officials

Description

Loads game-level officials data scraped from the WNBA Stats API (boxscoresummaryv2-style outputs). One row per official-game pair. Backed by the wehoop-wnba-stats-data pipeline that reads raw JSONs from wehoop-wnba-stats-raw and publishes parquet/rds artifacts to the wnba_stats_officials release tag.

load_wnba_stats_officials_manifest() returns the per-season manifest CSV (season, row_count, generated_at_utc, source_endpoint) for the WNBA Stats officials release tag without downloading any season's full data.

Usage

load_wnba_stats_officials(
  seasons = most_recent_wnba_stats_season(),
  ...,
  dbConnection = NULL,
  tablename = NULL
)

load_wnba_stats_officials_manifest()

Arguments

seasons

A vector of 4-digit years associated with given WNBA seasons. (Min: 1997)

...

Additional arguments passed to an underlying function that writes the season data into a database.

dbConnection

A DBIConnection object, as returned by DBI::dbConnect()

tablename

The name of the officials data table within the database

Value

Returns a wehoop_data tibble with one row per official-game pair.

col_name types description
season integer Season identifier (4-digit year or 'YYYY-YY' string).
game_id character Unique game identifier.
official_id character Unique official / referee identifier.
display_name character Display name.
first_name character Player's first name.
last_name character Player's last name.
jersey_num character Jersey number worn by the player.

See Also

Other WNBA Stats loader functions: load_wnba_stats_coaches(), load_wnba_stats_draft(), load_wnba_stats_game_rosters(), load_wnba_stats_lineups(), load_wnba_stats_pbp(), load_wnba_stats_player_game_logs(), load_wnba_stats_player_stats(), load_wnba_stats_rosters(), load_wnba_stats_schedule(), load_wnba_stats_shots(), load_wnba_stats_standings(), load_wnba_stats_team_stats()

Examples

try(load_wnba_stats_officials(seasons = most_recent_wnba_stats_season()))

Load wehoop WNBA Stats Play-by-Play

Description

Loads season-level WNBA play-by-play (V3 with on-court five-on-each-side player IDs, supplied by wnba_pbp() in the upstream compile script). Backed by the wehoop-wnba-stats-data pipeline that publishes parquet/rds artifacts to the wnba_stats_pbp release tag.

load_wnba_stats_pbp_manifest() returns the per-season manifest CSV (season, row_count, generated_at_utc, source_endpoint) for the WNBA Stats play-by-play release tag without downloading any season's full data.

Usage

load_wnba_stats_pbp(
  seasons = most_recent_wnba_stats_season(),
  ...,
  dbConnection = NULL,
  tablename = NULL
)

load_wnba_stats_pbp_manifest()

Arguments

seasons

A vector of 4-digit years associated with given WNBA seasons. (Min: 1997)

...

Additional arguments passed to an underlying function that writes the season data into a database.

dbConnection

A DBIConnection object, as returned by DBI::dbConnect()

tablename

The name of the play-by-play data table within the database

Value

Returns a wehoop_data tibble of per-event play-by-play rows.

See Also

Other WNBA Stats loader functions: load_wnba_stats_coaches(), load_wnba_stats_draft(), load_wnba_stats_game_rosters(), load_wnba_stats_lineups(), load_wnba_stats_officials(), load_wnba_stats_player_game_logs(), load_wnba_stats_player_stats(), load_wnba_stats_rosters(), load_wnba_stats_schedule(), load_wnba_stats_shots(), load_wnba_stats_standings(), load_wnba_stats_team_stats()

Examples

try(load_wnba_stats_pbp(seasons = most_recent_wnba_stats_season()))

Load wehoop WNBA Stats Player Game Logs

Description

Loads per-player per-game logs scraped from stats.wnba.com/leaguegamelog?PlayerOrTeam=P (one row per athlete-game pair: minutes, shooting splits, rebounds, steals, blocks, turnovers, personal fouls, plus/minus). Backed by the wehoop-wnba-stats-data pipeline that publishes parquet/rds artifacts to the wnba_stats_player_game_logs release tag.

load_wnba_stats_player_game_logs_manifest() returns the per-season manifest CSV (season, row_count, generated_at_utc, source_endpoint) for the WNBA Stats player game logs release tag without downloading any season's full data.

Usage

load_wnba_stats_player_game_logs(
  seasons = most_recent_wnba_stats_season(),
  ...,
  dbConnection = NULL,
  tablename = NULL
)

load_wnba_stats_player_game_logs_manifest()

Arguments

seasons

A vector of 4-digit years associated with given WNBA seasons. (Min: 1997)

...

Additional arguments passed to an underlying function that writes the season data into a database.

dbConnection

A DBIConnection object, as returned by DBI::dbConnect()

tablename

The name of the player game logs table within the database

Value

Returns a wehoop_data tibble of per-athlete per-game log rows.

See Also

Other WNBA Stats loader functions: load_wnba_stats_coaches(), load_wnba_stats_draft(), load_wnba_stats_game_rosters(), load_wnba_stats_lineups(), load_wnba_stats_officials(), load_wnba_stats_pbp(), load_wnba_stats_player_stats(), load_wnba_stats_rosters(), load_wnba_stats_schedule(), load_wnba_stats_shots(), load_wnba_stats_standings(), load_wnba_stats_team_stats()

Examples

try(load_wnba_stats_player_game_logs(seasons = most_recent_wnba_stats_season()))

Load wehoop WNBA Stats Player Season Stats

Description

Loads season-level WNBA player statistics scraped from the WNBA Stats API. Backed by the wehoop-wnba-stats-data pipeline that reads raw JSONs from wehoop-wnba-stats-raw and publishes parquet/rds artifacts to the wnba_stats_player_season_stats release tag.

load_wnba_stats_player_stats_manifest() returns the per-season manifest CSV (season, row_count, generated_at_utc, source_endpoint) for the WNBA Stats player season stats release tag without downloading any season's full data.

Usage

load_wnba_stats_player_stats(
  seasons = most_recent_wnba_stats_season(),
  ...,
  dbConnection = NULL,
  tablename = NULL
)

load_wnba_stats_player_stats_manifest()

Arguments

seasons

A vector of 4-digit years associated with given WNBA seasons. (Min: 1997)

...

Additional arguments passed to an underlying function that writes the season data into a database.

dbConnection

A DBIConnection object, as returned by DBI::dbConnect()

tablename

The name of the player season stats table within the database

Value

Returns a wehoop_data tibble of player season stats.

See Also

Other WNBA Stats loader functions: load_wnba_stats_coaches(), load_wnba_stats_draft(), load_wnba_stats_game_rosters(), load_wnba_stats_lineups(), load_wnba_stats_officials(), load_wnba_stats_pbp(), load_wnba_stats_player_game_logs(), load_wnba_stats_rosters(), load_wnba_stats_schedule(), load_wnba_stats_shots(), load_wnba_stats_standings(), load_wnba_stats_team_stats()

Examples

try(load_wnba_stats_player_stats(seasons = most_recent_wnba_stats_season()))

Load wehoop WNBA Stats Rosters

Description

Loads season-level WNBA team rosters scraped from the WNBA Stats API. One row per athlete-team-season triple. Backed by the wehoop-wnba-stats-data pipeline that reads raw JSONs from wehoop-wnba-stats-raw and publishes parquet/rds artifacts to the wnba_stats_rosters release tag.

load_wnba_stats_rosters_manifest() returns the per-season manifest CSV (season, row_count, generated_at_utc, source_endpoint) for the WNBA Stats rosters release tag without downloading any season's full data.

Usage

load_wnba_stats_rosters(
  seasons = most_recent_wnba_stats_season(),
  ...,
  dbConnection = NULL,
  tablename = NULL
)

load_wnba_stats_rosters_manifest()

Arguments

seasons

A vector of 4-digit years associated with given WNBA seasons. (Min: 1997)

...

Additional arguments passed to an underlying function that writes the season data into a database.

dbConnection

A DBIConnection object, as returned by DBI::dbConnect()

tablename

The name of the rosters data table within the database

Value

Returns a wehoop_data tibble with one row per athlete-team-season.

See Also

Other WNBA Stats loader functions: load_wnba_stats_coaches(), load_wnba_stats_draft(), load_wnba_stats_game_rosters(), load_wnba_stats_lineups(), load_wnba_stats_officials(), load_wnba_stats_pbp(), load_wnba_stats_player_game_logs(), load_wnba_stats_player_stats(), load_wnba_stats_schedule(), load_wnba_stats_shots(), load_wnba_stats_standings(), load_wnba_stats_team_stats()

Examples

try(load_wnba_stats_rosters(seasons = most_recent_wnba_stats_season()))

Load wehoop WNBA Stats Schedules

Description

Loads season-level WNBA schedules scraped from stats.wnba.com/leaguegamefinder (regular season + playoffs combined, pre-rejoined home/away). Backed by the wehoop-wnba-stats-data pipeline that publishes parquet/rds artifacts to the wnba_stats_schedules release tag.

load_wnba_stats_schedule_manifest() returns the per-season manifest CSV (season, row_count, generated_at_utc, source_endpoint) for the WNBA Stats schedules release tag without downloading any season's full data.

Usage

load_wnba_stats_schedule(
  seasons = most_recent_wnba_stats_season(),
  ...,
  dbConnection = NULL,
  tablename = NULL
)

load_wnba_stats_schedule_manifest()

Arguments

seasons

A vector of 4-digit years associated with given WNBA seasons. (Min: 1997)

...

Additional arguments passed to an underlying function that writes the season data into a database.

dbConnection

A DBIConnection object, as returned by DBI::dbConnect()

tablename

The name of the schedules data table within the database

Value

Returns a wehoop_data tibble of per-season schedules.

See Also

Other WNBA Stats loader functions: load_wnba_stats_coaches(), load_wnba_stats_draft(), load_wnba_stats_game_rosters(), load_wnba_stats_lineups(), load_wnba_stats_officials(), load_wnba_stats_pbp(), load_wnba_stats_player_game_logs(), load_wnba_stats_player_stats(), load_wnba_stats_rosters(), load_wnba_stats_shots(), load_wnba_stats_standings(), load_wnba_stats_team_stats()

Examples

try(load_wnba_stats_schedule(seasons = most_recent_wnba_stats_season()))

Load wehoop WNBA Stats Shots

Description

Loads shot events scraped from the WNBA Stats API (shotchartdetail-style outputs). One row per shot attempt with court coordinates, shot type, distance, and made/missed flag. Backed by the wehoop-wnba-stats-data pipeline that reads raw JSONs from wehoop-wnba-stats-raw and publishes parquet/rds artifacts to the wnba_stats_shots release tag.

load_wnba_stats_shots_manifest() returns the per-season manifest CSV (season, row_count, generated_at_utc, source_endpoint) for the WNBA Stats shots release tag without downloading any season's full data.

Usage

load_wnba_stats_shots(
  seasons = most_recent_wnba_stats_season(),
  ...,
  dbConnection = NULL,
  tablename = NULL
)

load_wnba_stats_shots_manifest()

Arguments

seasons

A vector of 4-digit years associated with given WNBA seasons. (Min: 1997)

...

Additional arguments passed to an underlying function that writes the season data into a database.

dbConnection

A DBIConnection object, as returned by DBI::dbConnect()

tablename

The name of the shots data table within the database

Value

Returns a wehoop_data tibble with one row per shot attempt.

col_name types description
season integer Season identifier (4-digit year or 'YYYY-YY' string).
game_id character Unique game identifier.
game_event_id character Unique identifier for game event.
player_id character Unique player identifier.
player_name character Player name.
team_id character Unique team identifier.
team_name character Full team display name (e.g. 'Las Vegas Aces').
period integer Period of the game (1-4 quarters; 5+ for OT).
minutes_remaining integer Minutes remaining.
seconds_remaining integer Seconds remaining in the period.
event_type character Event / play type code (V2 PBP).
action_type character Action type label (e.g. 'Made Shot', 'Substitution').
shot_type character Shot type label (e.g. 'Jump Shot', 'Layup').
shot_zone_basic character Shot zone (e.g. 'Restricted Area', 'Mid-Range', 'Above the Break 3').
shot_zone_area character Shot zone area ('Left Side', 'Right Side', 'Center').
shot_zone_range character Shot zone range ('Less Than 8 ft.', '8-16 ft.', '16-24 ft.', etc.).
shot_distance numeric Shot distance from the basket, in feet.
loc_x numeric X coordinate on the court (units of inches; 0 = basket center).
loc_y numeric Y coordinate on the court (units of inches; baseline at 0).
coordinate_x numeric X coordinate on the court (half-court layout).
coordinate_y numeric Y coordinate on the court (half-court layout).
shot_attempted_flag integer 1 if a shot was attempted on this event.
shot_made_flag integer 1 if the shot was made; 0 if missed.

See Also

Other WNBA Stats loader functions: load_wnba_stats_coaches(), load_wnba_stats_draft(), load_wnba_stats_game_rosters(), load_wnba_stats_lineups(), load_wnba_stats_officials(), load_wnba_stats_pbp(), load_wnba_stats_player_game_logs(), load_wnba_stats_player_stats(), load_wnba_stats_rosters(), load_wnba_stats_schedule(), load_wnba_stats_standings(), load_wnba_stats_team_stats()

Examples

try(load_wnba_stats_shots(seasons = most_recent_wnba_stats_season()))

Load wehoop WNBA Stats Standings

Description

Loads season-level WNBA standings scraped from the WNBA Stats API (leaguestandingsv3-style outputs). One row per team-season. Backed by the wehoop-wnba-stats-data pipeline that reads raw JSONs from wehoop-wnba-stats-raw and publishes parquet/rds artifacts to the wnba_stats_standings release tag.

load_wnba_stats_standings_manifest() returns the per-season manifest CSV (season, row_count, generated_at_utc, source_endpoint) for the WNBA Stats standings release tag without downloading any season's full data.

Usage

load_wnba_stats_standings(
  seasons = most_recent_wnba_stats_season(),
  ...,
  dbConnection = NULL,
  tablename = NULL
)

load_wnba_stats_standings_manifest()

Arguments

seasons

A vector of 4-digit years associated with given WNBA seasons. (Min: 1997)

...

Additional arguments passed to an underlying function that writes the season data into a database.

dbConnection

A DBIConnection object, as returned by DBI::dbConnect()

tablename

The name of the standings data table within the database

Value

Returns a wehoop_data tibble of team standings.

col_name types description
season integer Season identifier (4-digit year or 'YYYY-YY' string).
season_id character Unique season identifier.
team_id character Unique team identifier.
team_city character Team city or region (e.g. 'Las Vegas').
team_name character Full team display name (e.g. 'Las Vegas Aces').
conference character Filter players or teams by conference.
conference_record character Conference win-loss record.
playoff_rank integer League/season rank for playoff.
wins integer Total wins.
losses integer Total losses.
win_pct numeric Win percentage (0-1 decimal).
home_record character Home win-loss record.
road_record character Win-loss record for road.
l10 character L10.
strcurrentstreak character Strcurrentstreak.
points_pg numeric Points pg.
opp_points_pg numeric Opponent points pg.
diff_points_pg numeric Diff points pg.

See Also

Other WNBA Stats loader functions: load_wnba_stats_coaches(), load_wnba_stats_draft(), load_wnba_stats_game_rosters(), load_wnba_stats_lineups(), load_wnba_stats_officials(), load_wnba_stats_pbp(), load_wnba_stats_player_game_logs(), load_wnba_stats_player_stats(), load_wnba_stats_rosters(), load_wnba_stats_schedule(), load_wnba_stats_shots(), load_wnba_stats_team_stats()

Examples

try(load_wnba_stats_standings(seasons = most_recent_wnba_stats_season()))

Load wehoop WNBA Stats Team Season Stats

Description

Loads season-level team statistics scraped from the WNBA Stats API (leaguedashteamstats-style outputs). Backed by the wehoop-wnba-stats-data pipeline that reads raw JSONs from wehoop-wnba-stats-raw and publishes parquet/rds artifacts to the wnba_stats_team_season_stats release tag.

load_wnba_stats_team_stats_manifest() returns the per-season manifest CSV (season, row_count, generated_at_utc, source_endpoint) for the WNBA Stats team season stats release tag without downloading any season's full data.

Usage

load_wnba_stats_team_stats(
  seasons = most_recent_wnba_stats_season(),
  ...,
  dbConnection = NULL,
  tablename = NULL
)

load_wnba_stats_team_stats_manifest()

Arguments

seasons

A vector of 4-digit years associated with given WNBA seasons. (Min: 1997)

...

Additional arguments passed to an underlying function that writes the season data into a database.

dbConnection

A DBIConnection object, as returned by DBI::dbConnect()

tablename

The name of the team season stats table within the database

Value

Returns a wehoop_data tibble of team season stats.

col_name types description
season integer Season identifier (4-digit year or 'YYYY-YY' string).
season_type character Season type (1=pre-season, 2=regular season, 3=postseason, 4=off-season for ESPN; or string label for WNBA Stats).
team_id character Unique team identifier.
team_name character Full team display name (e.g. 'Las Vegas Aces').
team_abbreviation character Short team abbreviation (e.g. 'LAS').
gp integer Games played.
w integer Wins.
l integer Losses.
w_pct numeric Wins percentage (0-1 decimal).
min numeric Minutes played.
fgm numeric Field goals made.
fga numeric Field goal attempts.
fg_pct numeric Field goal percentage (0-1).
fg3m numeric Three-point field goals made.
fg3a numeric Three-point field goal attempts.
fg3_pct numeric Three-point field goal percentage (0-1).
ftm numeric Free throws made.
fta numeric Free throw attempts.
ft_pct numeric Free throw percentage (0-1).
oreb numeric Offensive rebounds.
dreb numeric Defensive rebounds.
reb numeric Total rebounds.
ast numeric Assists.
tov numeric Turnovers.
stl numeric Steals.
blk numeric Blocks.
pf numeric Personal fouls.
pts numeric Points scored.
plus_minus numeric Plus/minus point differential while on court.

See Also

Other WNBA Stats loader functions: load_wnba_stats_coaches(), load_wnba_stats_draft(), load_wnba_stats_game_rosters(), load_wnba_stats_lineups(), load_wnba_stats_officials(), load_wnba_stats_pbp(), load_wnba_stats_player_game_logs(), load_wnba_stats_player_stats(), load_wnba_stats_rosters(), load_wnba_stats_schedule(), load_wnba_stats_shots(), load_wnba_stats_standings()

Examples

try(load_wnba_stats_team_stats(seasons = most_recent_wnba_stats_season()))

Load wehoop WNBA team box scores

Description

helper that loads multiple seasons from the data repo either into memory or writes it into a db using some forwarded arguments in the dots

Usage

load_wnba_team_box(
  seasons = most_recent_wnba_season(),
  ...,
  dbConnection = NULL,
  tablename = NULL
)

Arguments

seasons

A vector of 4-digit years associated with given WNBA seasons. (Min: 2003)

...

Additional arguments passed to an underlying function that writes the season data into a database (used by update_wnba_db()).

dbConnection

A DBIConnection object, as returned by DBI::dbConnect()

tablename

The name of the team box data table within the database

Value

Returns a tibble

Examples

try(load_wnba_team_box())

Load wehoop WNBA Team Season Stats

Description

load_wnba_team_stats_manifest() returns the per-season manifest CSV (season, row_count, generated_at_utc, source_endpoint) for the team season stats release tag without downloading any season's full data.

Loads season-level WNBA team statistics scraped from ESPN. One row per team-season-statistic-grouping. Backed by the wehoop-wnba-data pipeline that reads raw JSONs from wehoop-wnba-raw and publishes parquet/rds artifacts to the espn_wnba_team_season_stats release tag.

Usage

load_wnba_team_stats_manifest()

load_wnba_team_stats(
  seasons = most_recent_wnba_season(),
  ...,
  dbConnection = NULL,
  tablename = NULL
)

Arguments

seasons

A vector of 4-digit years associated with given WNBA seasons. (Min: 2002)

...

Additional arguments passed to an underlying function that writes the season data into a database.

dbConnection

A DBIConnection object, as returned by DBI::dbConnect()

tablename

The name of the team season stats table within the database

Value

Returns a wehoop_data tibble of team season stats.

col_name types description
season integer Season identifier (4-digit year or 'YYYY-YY' string).
season_type integer Season type (1=pre-season, 2=regular season, 3=postseason, 4=off-season for ESPN; or string label for WNBA Stats).
team_id character Unique team identifier.
team_slug character URL-safe team identifier (e.g. 'lasvegas-aces' / 'aces').
team_location character Team city or location string.
team_name character Full team display name (e.g. 'Las Vegas Aces').
team_abbreviation character Short team abbreviation (e.g. 'LAS').
team_display_name character Full team display name.
category character Category label.
stat_name character Stat name.
stat_display_name character Stat display name.
stat_value numeric Stat value.
stat_display_value character Stat display value.
stat_rank integer League/season rank for stat.

See Also

Other WNBA loader functions: load_wnba_draft_manifest(), load_wnba_game_rosters_manifest(), load_wnba_officials_manifest(), load_wnba_player_stats_manifest(), load_wnba_rosters_manifest(), load_wnba_shots_manifest(), load_wnba_standings_manifest()

Examples

try(load_wnba_team_stats(seasons = most_recent_wnba_season()))

Most Recent Women's College Basketball Season

Description

Returns the most recent women's college basketball season year as an integer based on the current system date. The NCAA WBB season spans two calendar years; this helper rolls over to the next season starting in October. For example, calls made on 2025-11-15 return 2026, while calls made on 2025-03-15 return 2025.

Usage

most_recent_wbb_season()

Value

An integer giving the season-ending year (e.g. 2025 for the 2024-25 season).

Examples

most_recent_wbb_season()

Most Recent WNBA Season

Description

Returns the most recent WNBA season year as an integer based on the current system date. The WNBA season runs from May through October within a single calendar year; this helper rolls forward to the new season starting in May.

Usage

most_recent_wnba_season()

Value

An integer giving the WNBA season year (e.g. 2025).

Examples

most_recent_wnba_season()

Most Recent WNBA Stats API Season

Description

Returns the most recent WNBA Stats API season year as an integer. This is a thin wrapper around most_recent_wnba_season() kept as a separate helper for naming symmetry with the ⁠wnba_stats_*⁠ family of loaders (mirrors the ⁠most_recent_*_season()⁠ convention used elsewhere in the package). The WNBA Stats API and ESPN's WNBA endpoints share the same calendar-year season identifier, so the returned value is identical to most_recent_wnba_season().

Usage

most_recent_wnba_stats_season()

Value

An integer giving the WNBA season year (e.g. 2025).

Examples

most_recent_wnba_stats_season()

NCAA Women's Basketball Endpoint Overview

Description

Wrappers around NCAA-side women's college basketball endpoints beyond what ESPN exposes (rankings, teams reference, etc.). All requests use the same .retry_request() HTTP layer as the rest of the package.

Details

NCAA endpoints

Function Purpose
ncaa_wbb_teams() NCAA WBB team reference
ncaa_wbb_NET_rankings() NCAA NET rankings

Resilience pattern

NCAA endpoints occasionally drop columns. The wrappers use dplyr::any_of() / dplyr::rename(any_of(c(new = "old"))) so schema drift doesn't crash the parser — see ncaa_wbb_NET_rankings() for the reference implementation.


Get Women's college basketball NET rankings for the current date from the NCAA website

Description

Get Women's college basketball NET rankings for the current date from the NCAA website

Usage

ncaa_wbb_NET_rankings()

Value

Returns a tibble

col_name types description
rank integer Whether to include statistical ranks in the returned table.
previous integer Previous.
school character Player's school / college (when distinct from 'college').
conference character Filter players or teams by conference.
record character Record string (e.g. '12-4').
road character Road.
neutral character Neutral.
home character Home.
non_div_i character Non div i.

Author(s)

Saiem Gilani

Examples

# Get current NCAA NET rankings

  try(ncaa_wbb_NET_rankings())

Scrape NCAA Women's Basketball Teams (Division I, II, and III)

Description

Scrapes the NCAA Stats per-season team list at ⁠http://stats.ncaa.org/team/inst_team_list?academic_year=YYYY&conf_id=-1&division=N&sport_code=WBB⁠. Returns one row per team for the requested season-year and division, with the per-season season_id and team_id parsed out of the stats.ncaa.org team URL.

Network access: as of v3.0.0 stats.ncaa.org is fronted by Akamai and returns HTTP 403 (Reference #18.<...>) to many residential and cloud IP ranges regardless of headers. If you hit that block, supply a proxy that egresses from a non-blocked address — pass ⁠proxy =⁠ directly via ... (forwarded to .retry_request()), or set it once with options(wehoop.proxy = list(url=, port=, username=, password=)). See the wehoop CLAUDE.md / pkgdown docs for the full proxy resolution order.

Usage

ncaa_wbb_teams(year = most_recent_wbb_season(), division = 1, ...)

Arguments

year

The season for which data should be returned, in the form of "YYYY". Years currently available: 2002 onward.

division

Division - 1, 2, or 3.

...

Forwarded to the internal .retry_request() HTTP helper. The most useful pass-through is ⁠proxy =⁠ (string "http://host:port" or named list list(url=, port=, username=, password=, auth=)); see ?.retry_request for the full set of recognized arguments.

Details

  ncaa_wbb_teams(year = 2025, division = 1)

  # Behind a proxy (per-call):
  ncaa_wbb_teams(
    year = 2025, division = 1,
    proxy = list(url = "http://my-proxy", port = 8080,
                 username = "user", password = "pass")
  )

  # Or session-wide:
  options(wehoop.proxy = list(url = "http://my-proxy", port = 8080,
                              username = "user", password = "pass"))
  ncaa_wbb_teams(year = 2025, division = 1)

Value

A data frame with the following variables

col_name types description
team_id character Franchise team id (legacy ⁠/team/{id}/...⁠ urls).
team_name character Full team display name (e.g. 'Las Vegas Aces').
team_url character URL for team.
conference_id character Conference identifier.
conference character Filter players or teams by conference.
division numeric Team division.
year numeric 4-digit year.
season_id character Season id (legacy urls).
season_team_id character Season-team id (modern ⁠/teams/{id}⁠ urls).

WNBA Stats API Parameter Descriptions Reference table for parameters used across ⁠wnba_*()⁠ functions.

Description

WNBA Stats API Parameter Descriptions Reference table for parameters used across ⁠wnba_*()⁠ functions.

Usage

parameter_descriptions

Format

A data frame with 52 rows and 5 variables:

col_name description
parameter character. R-side argument name (snake_case).
api_name character. WNBA Stats API CamelCase parameter name.
description character. One-sentence description of the parameter.
valid_values character. Comma-separated enum values; empty string for free-form parameters.
default character. Default value as it appears in function signatures.

Progressively

Description

This function helps add progress-reporting to any function - given function f() and progressor p(), it will return a new function that calls f() and then (on-exiting) will call p() after every iteration.

Usage

progressively(f, p = NULL)

Arguments

f

a function to add progressr functionality to.

p

a progressor function as created by progressr::progressor()

Details

This is inspired by purrr's safely, quietly, and possibly function decorators.

Value

a function that does the same as f but it calls p() after iteration.


Load .rds file from a remote connection

Description

Load .rds file from a remote connection

Usage

rds_from_url(url)

Arguments

url

a character url

Value

a dataframe as created by readRDS()


Build/update wehoop WBB play-by-play database

Description

update_wbb_db() updates or creates a database with wehoop play by play data of all completed and available games since 2002.

Usage

update_wbb_db(
  dbdir = ".",
  dbname = "wehoop_db",
  tblname = "wehoop_wbb_pbp",
  force_rebuild = FALSE,
  db_connection = NULL,
  datasets = NULL,
  seasons = TRUE
)

Arguments

dbdir

Directory in which the database is or shall be located

dbname

File name of an existing or desired SQLite database within dbdir

tblname

The name of the play by play data table within the database

force_rebuild

Hybrid parameter (logical or numeric) to rebuild parts of or the complete play by play data table within the database (please see details for further information)

db_connection

A DBIConnection object, as returned by DBI::dbConnect() (please see details for further information)

datasets

Optional character vector of dataset shortnames. When NULL (the default) the legacy behavior is preserved: the play-by-play table tblname is created/updated. When supplied, only the requested datasets are written (one table per dataset, named ⁠wbb_<dataset>⁠ – e.g. wbb_rosters, wbb_player_stats). Valid values: "pbp", "team_box", "player_box", "schedule", "rosters", "player_stats", "team_stats", "standings", "shots", "game_rosters", "officials".

seasons

Optional integer vector of seasons. Forwarded to the dataset loaders only when datasets is supplied. Defaults to all available seasons for the dataset (seasons = TRUE).

Details

This function creates and updates a data table with the name tblname within a SQLite database (other drivers via db_connection) located in dbdir and named dbname. The data table combines all play by play data for every available game back to the 2002 season and adds the most recent completed games as soon as they are available for wehoop.

The argument force_rebuild is of hybrid type. It can rebuild the play by play data table either for the whole wehoop era (with force_rebuild = TRUE) or just for specified seasons (e.g. force_rebuild = c(2019, 2020)). Please note the following behavior:

  • force_rebuild = TRUE: The data table with the name tblname will be removed completely and rebuilt from scratch. This is helpful when new columns are added during the Off-Season.

  • force_rebuild = c(2019, 2020): The data table with the name tblname will be preserved and only rows from the 2019 and 2020 seasons will be deleted and re-added. This is intended to be used for ongoing seasons because ESPN's data provider can make changes to the underlying data during the week.

The parameter db_connection is intended for advanced users who want to use other DBI drivers, such as MariaDB, Postgres or odbc. Please note that the arguments dbdir and dbname are dropped in case a db_connection is provided but the argument tblname will still be used to write the data table into the database.

Value

Logical TRUE/FALSE


Build/update wehoop WNBA play-by-play database

Description

update_wnba_db() updates or creates a database with wehoop play by play data of all completed and available games since 2002.

Usage

update_wnba_db(
  dbdir = ".",
  dbname = "wehoop_db",
  tblname = "wehoop_wnba_pbp",
  force_rebuild = FALSE,
  db_connection = NULL,
  datasets = NULL,
  seasons = TRUE
)

Arguments

dbdir

Directory in which the database is or shall be located

dbname

File name of an existing or desired SQLite database within dbdir

tblname

The name of the play by play data table within the database

force_rebuild

Hybrid parameter (logical or numeric) to rebuild parts of or the complete play by play data table within the database (please see details for further information)

db_connection

A DBIConnection object, as returned by DBI::dbConnect() (please see details for further information)

datasets

Optional character vector of dataset shortnames. When NULL (the default) the legacy behavior is preserved: the play-by-play table tblname is created/updated. When supplied, only the requested datasets are written (one table per dataset, named ⁠wnba_<dataset>⁠ – e.g. wnba_rosters, wnba_player_stats). Valid values: "pbp", "team_box", "player_box", "schedule", "rosters", "player_stats", "team_stats", "standings", "draft", "shots", "game_rosters", "officials".

seasons

Optional integer vector of seasons. Forwarded to the dataset loaders only when datasets is supplied. Defaults to all available seasons for the dataset (seasons = TRUE).

Details

This function creates and updates a data table with the name tblname within a SQLite database (other drivers via db_connection) located in dbdir and named dbname. The data table combines all play by play data for every available game back to the 2002 season and adds the most recent completed games as soon as they are available for wehoop.

The argument force_rebuild is of hybrid type. It can rebuild the play by play data table either for the whole wehoop era (with force_rebuild = TRUE) or just for specified seasons (e.g. force_rebuild = c(2019, 2020)). Please note the following behavior:

  • force_rebuild = TRUE: The data table with the name tblname will be removed completely and rebuilt from scratch. This is helpful when new columns are added during the Off-Season.

  • force_rebuild = c(2019, 2020): The data table with the name tblname will be preserved and only rows from the 2019 and 2020 seasons will be deleted and re-added. This is intended to be used for ongoing seasons because ESPN's data provider can make changes to the underlying data during the week.

The parameter db_connection is intended for advanced users who want to use other DBI drivers, such as MariaDB, Postgres or odbc. Please note that the arguments dbdir and dbname are dropped in case a db_connection is provided but the argument tblname will still be used to write the data table into the database.

Value

Logical TRUE/FALSE


Build/update wehoop WNBA Stats database

Description

update_wnba_stats_db() writes one or more WNBA Stats API datasets into a database. Mirrors the WNBA / WBB ⁠update_*_db()⁠ shape but points at the ⁠load_wnba_stats_*⁠ family. Each dataset is written to its own table, named ⁠wnba_stats_<dataset>⁠.

Usage

update_wnba_stats_db(
  dbdir = ".",
  dbname = "wehoop_db",
  datasets = NULL,
  seasons = TRUE,
  db_connection = NULL
)

Arguments

dbdir

Directory in which the database is or shall be located.

dbname

File name of an existing or desired SQLite database within dbdir.

datasets

Character vector of dataset shortnames (see Details).

seasons

Optional integer vector of seasons to load. Defaults to all available seasons (seasons = TRUE).

db_connection

A DBIConnection object. When supplied, dbdir and dbname are ignored.

Details

Unlike update_wnba_db() / update_wbb_db(), there is no historical "play-by-play table" default to preserve, so datasets is required.

Valid datasets values: "schedule", "player_game_logs", "pbp", "rosters", "coaches", "player_stats", "lineups", "team_stats", "standings", "draft", "shots", "game_rosters", "officials".

Value

Invisibly returns TRUE on success.


wehoop Data Loaders Overview

Description

Loaders for full seasons of pre-scraped data from the ⁠sportsdataverse/wehoop-{wnba,wbb}-data⁠ releases on sportsdataverse-data. Each helper validates the requested seasons, builds the per-asset URLs, downloads in parallel (with optional progressr progress + optional DBI insertion), and tags the result with the wehoop_data S3 class.

Details

WNBA loaders

Function Asset family
load_wnba_pbp() WNBA play-by-play
load_wnba_player_box() WNBA player boxscores
load_wnba_team_box() WNBA team boxscores
load_wnba_schedule() WNBA schedule
update_wnba_db() Delta loader -> DB

WBB loaders

Function Asset family
load_wbb_pbp() Women's college basketball PBP
load_wbb_player_box() WBB player boxscores
load_wbb_team_box() WBB team boxscores
load_wbb_schedule() WBB schedule
update_wbb_db() Delta loader -> DB

Get WNBA Stats API All-time Leaders Grid

Description

Get WNBA Stats API All-time Leaders Grid

Get WNBA Stats API All-time Leaders Grid

Usage

wnba_alltimeleadersgrids(
  league_id = "10",
  per_mode = "PerGame",
  season_type = "Regular Season",
  top_x = 10,
  ...
)

Arguments

league_id

League - default: '00'. Other options include '10': WWNBA, '20': G-League

per_mode

Per Mode - PerGame, Totals

season_type

Season Type - Regular Season, Playoffs, All-Star

top_x

Top X

...

Additional arguments passed to an underlying function like httr.

Details

  wnba_alltimeleadersgrids(league_id = '10')

Value

Returns a named list of data frames: ASTLeaders, BLKLeaders, DREBLeaders, FG3ALeaders, FG3MLeaders, FG3_PCTLeaders, FGALeaders, FGMLeaders, FG_PCTLeaders, FTALeaders, FTMLeaders, FT_PCTLeaders, GPLeaders, OREBLeaders, PFLeaders, PTSLeaders, REBLeaders, STLLeaders, TOVLeaders

GPLeaders

col_name types description
PLAYER_ID character Unique player identifier.
PLAYER_NAME character Player name.
GP character Games played.
GP_RANK character
IS_ACTIVE_FLAG character

PTSLeaders

col_name types description
PLAYER_ID character Unique player identifier.
PLAYER_NAME character Player name.
PTS character Points scored.
PTS_RANK character
IS_ACTIVE_FLAG character

ASTLeaders

col_name types description
PLAYER_ID character Unique player identifier.
PLAYER_NAME character Player name.
AST character Assists.
AST_RANK character
IS_ACTIVE_FLAG character

STLLeaders

col_name types description
PLAYER_ID character Unique player identifier.
PLAYER_NAME character Player name.
STL character Steals.
STL_RANK character
IS_ACTIVE_FLAG character

OREBLeaders

col_name types description
PLAYER_ID character Unique player identifier.
PLAYER_NAME character Player name.
OREB character Offensive rebounds.
OREB_RANK character
IS_ACTIVE_FLAG character

DREBLeaders

col_name types description
PLAYER_ID character Unique player identifier.
PLAYER_NAME character Player name.
DREB character Defensive rebounds.
DREB_RANK character
IS_ACTIVE_FLAG character

REBLeaders

col_name types description
PLAYER_ID character Unique player identifier.
PLAYER_NAME character Player name.
REB character Total rebounds.
REB_RANK character
IS_ACTIVE_FLAG character

BLKLeaders

col_name types description
PLAYER_ID character Unique player identifier.
PLAYER_NAME character Player name.
BLK character Blocks.
BLK_RANK character
IS_ACTIVE_FLAG character

FGMLeaders

col_name types description
PLAYER_ID character Unique player identifier.
PLAYER_NAME character Player name.
FGM character Field goals made.
FGM_RANK character
IS_ACTIVE_FLAG character

FGALeaders

col_name types description
PLAYER_ID character Unique player identifier.
PLAYER_NAME character Player name.
FGA character Field goal attempts.
FGA_RANK character
IS_ACTIVE_FLAG character

FG_PCTLeaders

col_name types description
PLAYER_ID character Unique player identifier.
PLAYER_NAME character Player name.
FG_PCT character Field goal percentage (0-1).
FG_PCT_RANK character
IS_ACTIVE_FLAG character

TOVLeaders

col_name types description
PLAYER_ID character Unique player identifier.
PLAYER_NAME character Player name.
TOV character Turnovers.
TOV_RANK character
IS_ACTIVE_FLAG character

FG3MLeaders

col_name types description
PLAYER_ID character Unique player identifier.
PLAYER_NAME character Player name.
FG3M character Three-point field goals made.
FG3M_RANK character
IS_ACTIVE_FLAG character

FG3ALeaders

col_name types description
PLAYER_ID character Unique player identifier.
PLAYER_NAME character Player name.
FG3A character Three-point field goal attempts.
FG3A_RANK character
IS_ACTIVE_FLAG character

FG3_PCTLeaders

col_name types description
PLAYER_ID character Unique player identifier.
PLAYER_NAME character Player name.
FG3_PCT character Three-point field goal percentage (0-1).
FG3_PCT_RANK character
IS_ACTIVE_FLAG character

PFLeaders

col_name types description
PLAYER_ID character Unique player identifier.
PLAYER_NAME character Player name.
PF character Personal fouls.
PF_RANK character
IS_ACTIVE_FLAG character

FTMLeaders

col_name types description
PLAYER_ID character Unique player identifier.
PLAYER_NAME character Player name.
FTM character Free throws made.
FTM_RANK character
IS_ACTIVE_FLAG character

FTALeaders

col_name types description
PLAYER_ID character Unique player identifier.
PLAYER_NAME character Player name.
FTA character Free throw attempts.
FTA_RANK character
IS_ACTIVE_FLAG character

FT_PCTLeaders

col_name types description
PLAYER_ID character Unique player identifier.
PLAYER_NAME character Player name.
FT_PCT character Free throw percentage (0-1).
FT_PCT_RANK character
IS_ACTIVE_FLAG character

Author(s)

Saiem Gilani

See Also

Other WNBA Leaders Functions: wnba_assistleaders(), wnba_assisttracker(), wnba_homepagewidget(), wnba_leagueleaders()


Get WNBA Stats API Assist Leaders

Description

Get WNBA Stats API Assist Leaders

Get WNBA Stats API Assist Leaders

Usage

wnba_assistleaders(
  league_id = "10",
  per_mode = "PerGame",
  player_or_team = "Team",
  season = most_recent_wnba_season() - 1,
  season_type = "Regular Season",
  ...
)

Arguments

league_id

League - default: '00'. Other options include '10': WWNBA, '20': G-League

per_mode

Per Mode - PerGame, Totals

player_or_team

Player or Team

season

Season - format 2020-21

season_type

Season Type - Regular Season, Playoffs, All-Star

...

Additional arguments passed to an underlying function like httr.

Details

 wnba_assistleaders(league_id = '10', player_or_team = "Player")
 wnba_assistleaders(league_id = '10', player_or_team = "Team")

Value

Returns a named list of data frames: AssistLeaders

AssistLeaders

col_name types description
RANK character Whether to include statistical ranks in the returned table.
PLAYER_ID character Unique player identifier.
PLAYER character
TEAM_ID character Unique team identifier.
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
TEAM_NAME character Full team display name (e.g. 'Las Vegas Aces').
JERSEY_NUM character Jersey number worn by the player.
PLAYER_POSITION character
AST character Assists.

Author(s)

Saiem Gilani

See Also

Other WNBA Leaders Functions: wnba_alltimeleadersgrids(), wnba_assisttracker(), wnba_homepagewidget(), wnba_leagueleaders()


Get WNBA Stats API Assist Tracker

Description

Get WNBA Stats API Assist Tracker

Get WNBA Stats API Assist Tracker

Usage

wnba_assisttracker(
  league_id = "10",
  per_mode = "PerGame",
  season = most_recent_wnba_season() - 1,
  season_type = "Regular Season",
  ...
)

Arguments

league_id

League - default: '00'. Other options include '10': WWNBA, '20': G-League

per_mode

Per Mode - PerGame, Totals

season

Season - format 2020-21

season_type

Season Type - Regular Season, Playoffs, All-Star

...

Additional arguments passed to an underlying function like httr.

Details

  wnba_assisttracker(league_id = '10')

Value

Returns a named list of data frames: AssistTracker

AssistTracker

col_name types description
ASSISTS numeric Total assists.

Author(s)

Saiem Gilani

See Also

Other WNBA Leaders Functions: wnba_alltimeleadersgrids(), wnba_assistleaders(), wnba_homepagewidget(), wnba_leagueleaders()


Get WNBA Stats API Boxscore Advanced V2

Description

Get WNBA Stats API Boxscore Advanced V2

Get WNBA Stats API Boxscore Advanced V2

Usage

wnba_boxscoreadvancedv2(
  game_id,
  start_period = 0,
  end_period = 14,
  start_range = 0,
  end_range = 0,
  range_type = 0,
  ...
)

Arguments

game_id

Game ID

start_period

start_period

end_period

end_period

start_range

start_range

end_range

end_range

range_type

range_type

...

Additional arguments passed to an underlying function like httr.

Details

  wnba_boxscoreadvancedv2(game_id = "1022200034")

Value

Returns a named list of data frames: PlayerStats, TeamStats

PlayerStats

col_name types description
GAME_ID character Unique game identifier.
TEAM_ID character Unique team identifier.
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
TEAM_CITY character Team city or region (e.g. 'Las Vegas').
PLAYER_ID character Unique player identifier.
PLAYER_NAME character Player name.
NICKNAME character Team or athlete nickname.
START_POSITION character
COMMENT character Player status / inactive reason (e.g. 'DNP - Coach's Decision', 'Inactive').
MIN character Minutes played.
E_OFF_RATING character
OFF_RATING character Offensive rating (points produced per 100 possessions).
E_DEF_RATING character
DEF_RATING character Defensive rating (points allowed per 100 possessions).
E_NET_RATING character
NET_RATING character Net rating (off rating - def rating).
AST_PCT character Assist percentage (0-1).
AST_TOV character
AST_RATIO character Assist ratio (assists per 100 possessions used).
OREB_PCT character Offensive rebound percentage (0-1).
DREB_PCT character Defensive rebound percentage (0-1).
REB_PCT character Total rebound percentage (0-1).
TM_TOV_PCT character
EFG_PCT character Effective field goal percentage (0-1).
TS_PCT character True shooting percentage (0-1).
USG_PCT character Usage percentage (0-1).
E_USG_PCT character
E_PACE character
PACE character Possessions per 48 minutes.
PACE_PER40 character Pace per40.
POSS character
PIE character Player Impact Estimate (0-1).

TeamStats

col_name types description
GAME_ID character Unique game identifier.
TEAM_ID character Unique team identifier.
TEAM_NAME character Full team display name (e.g. 'Las Vegas Aces').
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
TEAM_CITY character Team city or region (e.g. 'Las Vegas').
MIN character Minutes played.
E_OFF_RATING character
OFF_RATING character Offensive rating (points produced per 100 possessions).
E_DEF_RATING character
DEF_RATING character Defensive rating (points allowed per 100 possessions).
E_NET_RATING character
NET_RATING character Net rating (off rating - def rating).
AST_PCT character Assist percentage (0-1).
AST_TOV character
AST_RATIO character Assist ratio (assists per 100 possessions used).
OREB_PCT character Offensive rebound percentage (0-1).
DREB_PCT character Defensive rebound percentage (0-1).
REB_PCT character Total rebound percentage (0-1).
E_TM_TOV_PCT character
TM_TOV_PCT character
EFG_PCT character Effective field goal percentage (0-1).
TS_PCT character True shooting percentage (0-1).
USG_PCT character Usage percentage (0-1).
E_USG_PCT character
E_PACE character
PACE character Possessions per 48 minutes.
PACE_PER40 character Pace per40.
POSS character
PIE character Player Impact Estimate (0-1).

Author(s)

Saiem Gilani

See Also

Other WNBA Boxscore Functions: wnba_boxscorefourfactorsv2(), wnba_boxscoremiscv2(), wnba_boxscoreplayertrackv2(), wnba_boxscorescoringv2(), wnba_boxscoresummaryv2(), wnba_boxscoretraditionalv2(), wnba_boxscoreusagev2(), wnba_gamerotation(), wnba_hustlestatsboxscore()


Get WNBA Stats API Boxscore Advanced V3

Description

Get WNBA Stats API Boxscore Advanced V3

Get WNBA Stats API Boxscore Advanced V3

Usage

wnba_boxscoreadvancedv3(
  game_id = "1022200034",
  start_period = 0,
  end_period = 14,
  start_range = 0,
  end_range = 0,
  range_type = 0,
  ...
)

Arguments

game_id

Game ID

start_period

start_period

end_period

end_period

start_range

start_range

end_range

end_range

range_type

range_type

...

Additional arguments passed to an underlying function like httr.

Details

 wnba_boxscoreadvancedv3(game_id = "1022200034")

Value

A list of data frames: home_team_player_advanced, away_team_player_advanced, home_team_totals_advanced, away_team_totals_advanced

home_team_player_advanced

col_name types description
game_id character Unique game identifier.
away_team_id integer Unique identifier for the away team.
home_team_id integer Unique identifier for the home team.
team_id integer Unique team identifier.
team_name character Full team display name (e.g. 'Las Vegas Aces').
team_city character Team city or region (e.g. 'Las Vegas').
team_tricode character Three-letter team code (e.g. 'LAS' / 'NYL').
team_slug character URL-safe team identifier (e.g. 'lasvegas-aces' / 'aces').
person_id integer Unique player identifier (V3 endpoints).
first_name character Player's first name.
family_name character Player's family / last name.
name_i character Initialed name (e.g. 'A. Wilson').
player_slug character URL-safe player identifier.
position character Listed roster position (G, F, C, etc.).
comment character Player status / inactive reason (e.g. 'DNP - Coach's Decision', 'Inactive').
jersey_num character Jersey number worn by the player.
minutes character Minutes played, formatted MM:SS (V3 PT-duration parsed) or decimal minutes (V2).
estimated_offensive_rating numeric Estimated offensive rating (points per 100 possessions estimate).
offensive_rating numeric Offensive rating (points per 100 possessions).
estimated_defensive_rating numeric Estimated defensive rating (points allowed per 100 possessions estimate).
defensive_rating numeric Defensive rating (points allowed per 100 possessions).
estimated_net_rating numeric Estimated net rating (off rating - def rating).
net_rating numeric Net rating (off rating - def rating).
assist_percentage numeric Assist percentage (0-1).
assist_to_turnover numeric Assist-to-turnover ratio.
assist_ratio numeric Assist ratio (assists per 100 possessions used).
offensive_rebound_percentage numeric Offensive rebound percentage (0-1).
defensive_rebound_percentage numeric Defensive rebound percentage (0-1).
rebound_percentage numeric Total rebound percentage (0-1).
turnover_ratio numeric Turnover ratio (turnovers per 100 possessions used).
effective_field_goal_percentage numeric Effective field goal percentage (0-1).
true_shooting_percentage numeric True shooting percentage (0-1).
usage_percentage numeric Usage percentage (0-1).
estimated_usage_percentage numeric Estimated usage percentage (0-1).
estimated_pace numeric Estimated possessions per 48 minutes.
pace numeric Possessions per 48 minutes.
pace_per40 numeric Pace per40.
possessions numeric Possessions used.
pie numeric Player Impact Estimate (0-1).

away_team_player_advanced

col_name types description
game_id character Unique game identifier.
away_team_id integer Unique identifier for the away team.
home_team_id integer Unique identifier for the home team.
team_id integer Unique team identifier.
team_name character Full team display name (e.g. 'Las Vegas Aces').
team_city character Team city or region (e.g. 'Las Vegas').
team_tricode character Three-letter team code (e.g. 'LAS' / 'NYL').
team_slug character URL-safe team identifier (e.g. 'lasvegas-aces' / 'aces').
person_id integer Unique player identifier (V3 endpoints).
first_name character Player's first name.
family_name character Player's family / last name.
name_i character Initialed name (e.g. 'A. Wilson').
player_slug character URL-safe player identifier.
position character Listed roster position (G, F, C, etc.).
comment character Player status / inactive reason (e.g. 'DNP - Coach's Decision', 'Inactive').
jersey_num character Jersey number worn by the player.
minutes character Minutes played, formatted MM:SS (V3 PT-duration parsed) or decimal minutes (V2).
estimated_offensive_rating numeric Estimated offensive rating (points per 100 possessions estimate).
offensive_rating numeric Offensive rating (points per 100 possessions).
estimated_defensive_rating numeric Estimated defensive rating (points allowed per 100 possessions estimate).
defensive_rating numeric Defensive rating (points allowed per 100 possessions).
estimated_net_rating numeric Estimated net rating (off rating - def rating).
net_rating numeric Net rating (off rating - def rating).
assist_percentage numeric Assist percentage (0-1).
assist_to_turnover numeric Assist-to-turnover ratio.
assist_ratio numeric Assist ratio (assists per 100 possessions used).
offensive_rebound_percentage numeric Offensive rebound percentage (0-1).
defensive_rebound_percentage numeric Defensive rebound percentage (0-1).
rebound_percentage numeric Total rebound percentage (0-1).
turnover_ratio numeric Turnover ratio (turnovers per 100 possessions used).
effective_field_goal_percentage numeric Effective field goal percentage (0-1).
true_shooting_percentage numeric True shooting percentage (0-1).
usage_percentage numeric Usage percentage (0-1).
estimated_usage_percentage numeric Estimated usage percentage (0-1).
estimated_pace numeric Estimated possessions per 48 minutes.
pace numeric Possessions per 48 minutes.
pace_per40 numeric Pace per40.
possessions numeric Possessions used.
pie numeric Player Impact Estimate (0-1).

home_team_totals_advanced

col_name types description
game_id character Unique game identifier.
away_team_id integer Unique identifier for the away team.
home_team_id integer Unique identifier for the home team.
team_id integer Unique team identifier.
team_name character Full team display name (e.g. 'Las Vegas Aces').
team_city character Team city or region (e.g. 'Las Vegas').
team_tricode character Three-letter team code (e.g. 'LAS' / 'NYL').
team_slug character URL-safe team identifier (e.g. 'lasvegas-aces' / 'aces').
minutes character Minutes played, formatted MM:SS (V3 PT-duration parsed) or decimal minutes (V2).
estimated_offensive_rating numeric Estimated offensive rating (points per 100 possessions estimate).
offensive_rating numeric Offensive rating (points per 100 possessions).
estimated_defensive_rating numeric Estimated defensive rating (points allowed per 100 possessions estimate).
defensive_rating numeric Defensive rating (points allowed per 100 possessions).
estimated_net_rating numeric Estimated net rating (off rating - def rating).
net_rating numeric Net rating (off rating - def rating).
assist_percentage numeric Assist percentage (0-1).
assist_to_turnover numeric Assist-to-turnover ratio.
assist_ratio numeric Assist ratio (assists per 100 possessions used).
offensive_rebound_percentage numeric Offensive rebound percentage (0-1).
defensive_rebound_percentage numeric Defensive rebound percentage (0-1).
rebound_percentage numeric Total rebound percentage (0-1).
estimated_team_turnover_percentage numeric Estimated team turnover percentage (0-1).
turnover_ratio numeric Turnover ratio (turnovers per 100 possessions used).
effective_field_goal_percentage numeric Effective field goal percentage (0-1).
true_shooting_percentage numeric True shooting percentage (0-1).
usage_percentage numeric Usage percentage (0-1).
estimated_usage_percentage numeric Estimated usage percentage (0-1).
estimated_pace numeric Estimated possessions per 48 minutes.
pace numeric Possessions per 48 minutes.
pace_per40 numeric Pace per40.
possessions numeric Possessions used.
pie numeric Player Impact Estimate (0-1).

away_team_totals_advanced

col_name types description
game_id character Unique game identifier.
away_team_id integer Unique identifier for the away team.
home_team_id integer Unique identifier for the home team.
team_id integer Unique team identifier.
team_name character Full team display name (e.g. 'Las Vegas Aces').
team_city character Team city or region (e.g. 'Las Vegas').
team_tricode character Three-letter team code (e.g. 'LAS' / 'NYL').
team_slug character URL-safe team identifier (e.g. 'lasvegas-aces' / 'aces').
minutes character Minutes played, formatted MM:SS (V3 PT-duration parsed) or decimal minutes (V2).
estimated_offensive_rating numeric Estimated offensive rating (points per 100 possessions estimate).
offensive_rating numeric Offensive rating (points per 100 possessions).
estimated_defensive_rating numeric Estimated defensive rating (points allowed per 100 possessions estimate).
defensive_rating numeric Defensive rating (points allowed per 100 possessions).
estimated_net_rating numeric Estimated net rating (off rating - def rating).
net_rating numeric Net rating (off rating - def rating).
assist_percentage numeric Assist percentage (0-1).
assist_to_turnover numeric Assist-to-turnover ratio.
assist_ratio numeric Assist ratio (assists per 100 possessions used).
offensive_rebound_percentage numeric Offensive rebound percentage (0-1).
defensive_rebound_percentage numeric Defensive rebound percentage (0-1).
rebound_percentage numeric Total rebound percentage (0-1).
estimated_team_turnover_percentage numeric Estimated team turnover percentage (0-1).
turnover_ratio numeric Turnover ratio (turnovers per 100 possessions used).
effective_field_goal_percentage numeric Effective field goal percentage (0-1).
true_shooting_percentage numeric True shooting percentage (0-1).
usage_percentage numeric Usage percentage (0-1).
estimated_usage_percentage numeric Estimated usage percentage (0-1).
estimated_pace numeric Estimated possessions per 48 minutes.
pace numeric Possessions per 48 minutes.
pace_per40 numeric Pace per40.
possessions numeric Possessions used.
pie numeric Player Impact Estimate (0-1).

Author(s)

Saiem Gilani

See Also

Other WNBA Boxscore V3 Functions: wnba_boxscorefourfactorsv3(), wnba_boxscorehustlev2(), wnba_boxscoremiscv3(), wnba_boxscoreplayertrackv3(), wnba_boxscorescoringv3(), wnba_boxscoresummaryv3(), wnba_boxscoretraditionalv3(), wnba_boxscoreusagev3()


Get WNBA Stats API Boxscore Four Factors V2

Description

Get WNBA Stats API Boxscore Four Factors V2

Get WNBA Stats API Boxscore Four Factors V2

Usage

wnba_boxscorefourfactorsv2(
  game_id,
  start_period = 0,
  end_period = 14,
  start_range = 0,
  end_range = 0,
  range_type = 0,
  ...
)

Arguments

game_id

Game ID

start_period

start_period

end_period

end_period

start_range

start_range

end_range

end_range

range_type

range_type

...

Additional arguments passed to an underlying function like httr.

Details

  wnba_boxscorefourfactorsv2(game_id = "1022200034")

Value

Returns a named list of data frames: sqlPlayersFourFactors, sqlTeamFourFactors

sqlPlayersFourFactors

col_name types description
GAME_ID character Unique game identifier.
TEAM_ID character Unique team identifier.
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
TEAM_CITY character Team city or region (e.g. 'Las Vegas').
PLAYER_ID character Unique player identifier.
PLAYER_NAME character Player name.
NICKNAME character Team or athlete nickname.
START_POSITION character
COMMENT character Player status / inactive reason (e.g. 'DNP - Coach's Decision', 'Inactive').
MIN character Minutes played.
EFG_PCT character Effective field goal percentage (0-1).
FTA_RATE character Free throw attempt rate (FTA / FGA).
TM_TOV_PCT character
OREB_PCT character Offensive rebound percentage (0-1).
OPP_EFG_PCT character
OPP_FTA_RATE character
OPP_TOV_PCT character
OPP_OREB_PCT character

sqlTeamsFourFactors

col_name types description
GAME_ID character Unique game identifier.
TEAM_ID character Unique team identifier.
TEAM_NAME character Full team display name (e.g. 'Las Vegas Aces').
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
TEAM_CITY character Team city or region (e.g. 'Las Vegas').
MIN character Minutes played.
EFG_PCT character Effective field goal percentage (0-1).
FTA_RATE character Free throw attempt rate (FTA / FGA).
TM_TOV_PCT character
OREB_PCT character Offensive rebound percentage (0-1).
OPP_EFG_PCT character
OPP_FTA_RATE character
OPP_TOV_PCT character
OPP_OREB_PCT character

Author(s)

Saiem Gilani

See Also

Other WNBA Boxscore Functions: wnba_boxscoreadvancedv2(), wnba_boxscoremiscv2(), wnba_boxscoreplayertrackv2(), wnba_boxscorescoringv2(), wnba_boxscoresummaryv2(), wnba_boxscoretraditionalv2(), wnba_boxscoreusagev2(), wnba_gamerotation(), wnba_hustlestatsboxscore()


Get WNBA Stats API Boxscore Four Factors V3

Description

Get WNBA Stats API Boxscore Four Factors V3

Get WNBA Stats API Boxscore Four Factors V3

Usage

wnba_boxscorefourfactorsv3(
  game_id = "1022200034",
  start_period = 0,
  end_period = 14,
  start_range = 0,
  end_range = 0,
  range_type = 0,
  ...
)

Arguments

game_id

Game ID

start_period

start_period

end_period

end_period

start_range

start_range

end_range

end_range

range_type

range_type

...

Additional arguments passed to an underlying function like httr.

Details

 wnba_boxscorefourfactorsv3(game_id = "1022200034")

Value

A list of data frames: home_team_player_four_factors, away_team_player_four_factors, home_team_totals_four_factors, away_team_totals_four_factors

home_team_player_four_factors

col_name types description
game_id character Unique game identifier.
away_team_id integer Unique identifier for the away team.
home_team_id integer Unique identifier for the home team.
team_id integer Unique team identifier.
team_name character Full team display name (e.g. 'Las Vegas Aces').
team_city character Team city or region (e.g. 'Las Vegas').
team_tricode character Three-letter team code (e.g. 'LAS' / 'NYL').
team_slug character URL-safe team identifier (e.g. 'lasvegas-aces' / 'aces').
person_id integer Unique player identifier (V3 endpoints).
first_name character Player's first name.
family_name character Player's family / last name.
name_i character Initialed name (e.g. 'A. Wilson').
player_slug character URL-safe player identifier.
position character Listed roster position (G, F, C, etc.).
comment character Player status / inactive reason (e.g. 'DNP - Coach's Decision', 'Inactive').
jersey_num character Jersey number worn by the player.
minutes character Minutes played, formatted MM:SS (V3 PT-duration parsed) or decimal minutes (V2).
effective_field_goal_percentage numeric Effective field goal percentage (0-1).
free_throw_attempt_rate numeric Free throw attempt rate (FTA / FGA).
team_turnover_percentage numeric Team turnover percentage (0-1).
offensive_rebound_percentage numeric Offensive rebound percentage (0-1).
opp_effective_field_goal_percentage numeric Opponent effective field goal percentage (0-1 decimal).
opp_free_throw_attempt_rate numeric Opponent free throw attempt rate.
opp_team_turnover_percentage numeric Opponent team turnover percentage (0-1 decimal).
opp_offensive_rebound_percentage numeric Opponent offensive rebound percentage (0-1 decimal).

away_team_player_four_factors

col_name types description
game_id character Unique game identifier.
away_team_id integer Unique identifier for the away team.
home_team_id integer Unique identifier for the home team.
team_id integer Unique team identifier.
team_name character Full team display name (e.g. 'Las Vegas Aces').
team_city character Team city or region (e.g. 'Las Vegas').
team_tricode character Three-letter team code (e.g. 'LAS' / 'NYL').
team_slug character URL-safe team identifier (e.g. 'lasvegas-aces' / 'aces').
person_id integer Unique player identifier (V3 endpoints).
first_name character Player's first name.
family_name character Player's family / last name.
name_i character Initialed name (e.g. 'A. Wilson').
player_slug character URL-safe player identifier.
position character Listed roster position (G, F, C, etc.).
comment character Player status / inactive reason (e.g. 'DNP - Coach's Decision', 'Inactive').
jersey_num character Jersey number worn by the player.
minutes character Minutes played, formatted MM:SS (V3 PT-duration parsed) or decimal minutes (V2).
effective_field_goal_percentage numeric Effective field goal percentage (0-1).
free_throw_attempt_rate numeric Free throw attempt rate (FTA / FGA).
team_turnover_percentage numeric Team turnover percentage (0-1).
offensive_rebound_percentage numeric Offensive rebound percentage (0-1).
opp_effective_field_goal_percentage numeric Opponent effective field goal percentage (0-1 decimal).
opp_free_throw_attempt_rate numeric Opponent free throw attempt rate.
opp_team_turnover_percentage numeric Opponent team turnover percentage (0-1 decimal).
opp_offensive_rebound_percentage numeric Opponent offensive rebound percentage (0-1 decimal).

home_team_totals_four_factors

col_name types description
game_id character Unique game identifier.
away_team_id integer Unique identifier for the away team.
home_team_id integer Unique identifier for the home team.
team_id integer Unique team identifier.
team_name character Full team display name (e.g. 'Las Vegas Aces').
team_city character Team city or region (e.g. 'Las Vegas').
team_tricode character Three-letter team code (e.g. 'LAS' / 'NYL').
team_slug character URL-safe team identifier (e.g. 'lasvegas-aces' / 'aces').
minutes character Minutes played, formatted MM:SS (V3 PT-duration parsed) or decimal minutes (V2).
effective_field_goal_percentage numeric Effective field goal percentage (0-1).
free_throw_attempt_rate numeric Free throw attempt rate (FTA / FGA).
team_turnover_percentage numeric Team turnover percentage (0-1).
offensive_rebound_percentage numeric Offensive rebound percentage (0-1).
opp_effective_field_goal_percentage numeric Opponent effective field goal percentage (0-1 decimal).
opp_free_throw_attempt_rate numeric Opponent free throw attempt rate.
opp_team_turnover_percentage numeric Opponent team turnover percentage (0-1 decimal).
opp_offensive_rebound_percentage numeric Opponent offensive rebound percentage (0-1 decimal).

away_team_totals_four_factors

col_name types description
game_id character Unique game identifier.
away_team_id integer Unique identifier for the away team.
home_team_id integer Unique identifier for the home team.
team_id integer Unique team identifier.
team_name character Full team display name (e.g. 'Las Vegas Aces').
team_city character Team city or region (e.g. 'Las Vegas').
team_tricode character Three-letter team code (e.g. 'LAS' / 'NYL').
team_slug character URL-safe team identifier (e.g. 'lasvegas-aces' / 'aces').
minutes character Minutes played, formatted MM:SS (V3 PT-duration parsed) or decimal minutes (V2).
effective_field_goal_percentage numeric Effective field goal percentage (0-1).
free_throw_attempt_rate numeric Free throw attempt rate (FTA / FGA).
team_turnover_percentage numeric Team turnover percentage (0-1).
offensive_rebound_percentage numeric Offensive rebound percentage (0-1).
opp_effective_field_goal_percentage numeric Opponent effective field goal percentage (0-1 decimal).
opp_free_throw_attempt_rate numeric Opponent free throw attempt rate.
opp_team_turnover_percentage numeric Opponent team turnover percentage (0-1 decimal).
opp_offensive_rebound_percentage numeric Opponent offensive rebound percentage (0-1 decimal).

Author(s)

Saiem Gilani

See Also

Other WNBA Boxscore V3 Functions: wnba_boxscoreadvancedv3(), wnba_boxscorehustlev2(), wnba_boxscoremiscv3(), wnba_boxscoreplayertrackv3(), wnba_boxscorescoringv3(), wnba_boxscoresummaryv3(), wnba_boxscoretraditionalv3(), wnba_boxscoreusagev3()


Get WNBA Stats API Boxscore Misc V2

Description

Get WNBA Stats API Boxscore Misc V2

Get WNBA Stats API Boxscore Misc V2

Usage

wnba_boxscoremiscv2(
  game_id,
  start_period = 0,
  end_period = 14,
  start_range = 0,
  end_range = 0,
  range_type = 0,
  ...
)

Arguments

game_id

Game ID

start_period

start_period

end_period

end_period

start_range

start_range

end_range

end_range

range_type

range_type

...

Additional arguments passed to an underlying function like httr.

Details

  wnba_boxscoremiscv2(game_id = "1022200034")

Value

Returns a named list of data frames: sqlPlayersMisc, sqlTeamsMisc

sqlPlayersMisc

col_name types description
GAME_ID character Unique game identifier.
TEAM_ID character Unique team identifier.
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
TEAM_CITY character Team city or region (e.g. 'Las Vegas').
PLAYER_ID character Unique player identifier.
PLAYER_NAME character Player name.
NICKNAME character Team or athlete nickname.
START_POSITION character
COMMENT character Player status / inactive reason (e.g. 'DNP - Coach's Decision', 'Inactive').
MIN character Minutes played.
PTS_OFF_TOV character Points scored off opponent turnovers.
PTS_2ND_CHANCE character
PTS_FB character
PTS_PAINT character Points scored in the paint.
OPP_PTS_OFF_TOV character
OPP_PTS_2ND_CHANCE character
OPP_PTS_FB character
OPP_PTS_PAINT character
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character

sqlTeamsMisc

col_name types description
GAME_ID character Unique game identifier.
TEAM_ID character Unique team identifier.
TEAM_NAME character Full team display name (e.g. 'Las Vegas Aces').
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
TEAM_CITY character Team city or region (e.g. 'Las Vegas').
MIN character Minutes played.
PTS_OFF_TOV character Points scored off opponent turnovers.
PTS_2ND_CHANCE character
PTS_FB character
PTS_PAINT character Points scored in the paint.
OPP_PTS_OFF_TOV character
OPP_PTS_2ND_CHANCE character
OPP_PTS_FB character
OPP_PTS_PAINT character
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character

Author(s)

Saiem Gilani

See Also

Other WNBA Boxscore Functions: wnba_boxscoreadvancedv2(), wnba_boxscorefourfactorsv2(), wnba_boxscoreplayertrackv2(), wnba_boxscorescoringv2(), wnba_boxscoresummaryv2(), wnba_boxscoretraditionalv2(), wnba_boxscoreusagev2(), wnba_gamerotation(), wnba_hustlestatsboxscore()


Get WNBA Stats API Boxscore Misc V3

Description

Get WNBA Stats API Boxscore Misc V3

Get WNBA Stats API Boxscore Misc V3

Usage

wnba_boxscoremiscv3(
  game_id = "1022200034",
  start_period = 0,
  end_period = 14,
  start_range = 0,
  end_range = 0,
  range_type = 0,
  ...
)

Arguments

game_id

Game ID

start_period

start_period

end_period

end_period

start_range

start_range

end_range

end_range

range_type

range_type

...

Additional arguments passed to an underlying function like httr.

Details

 wnba_boxscoremiscv3(game_id = "1022200034")

Value

A list of data frames: home_team_player_misc, away_team_player_misc, home_team_totals_misc, away_team_totals_misc

home_team_player_misc

col_name types description
game_id character Unique game identifier.
away_team_id integer Unique identifier for the away team.
home_team_id integer Unique identifier for the home team.
team_id integer Unique team identifier.
team_name character Full team display name (e.g. 'Las Vegas Aces').
team_city character Team city or region (e.g. 'Las Vegas').
team_tricode character Three-letter team code (e.g. 'LAS' / 'NYL').
team_slug character URL-safe team identifier (e.g. 'lasvegas-aces' / 'aces').
person_id integer Unique player identifier (V3 endpoints).
first_name character Player's first name.
family_name character Player's family / last name.
name_i character Initialed name (e.g. 'A. Wilson').
player_slug character URL-safe player identifier.
position character Listed roster position (G, F, C, etc.).
comment character Player status / inactive reason (e.g. 'DNP - Coach's Decision', 'Inactive').
jersey_num character Jersey number worn by the player.
minutes character Minutes played, formatted MM:SS (V3 PT-duration parsed) or decimal minutes (V2).
points_off_turnovers integer Points scored off opponent turnovers.
points_second_chance integer Second-chance points scored.
points_fast_break integer Fast-break points scored.
points_paint integer Points scored in the paint.
opp_points_off_turnovers integer Opponent points off turnovers.
opp_points_second_chance integer Opponent points second chance.
opp_points_fast_break integer Opponent points fast break.
opp_points_paint integer Opponent points paint.
blocks integer Total blocks.
blocks_against integer Shots blocked by opponents while attempting.
fouls_personal integer Personal fouls.
fouls_drawn integer Personal fouls drawn (by opponent's actions).

away_team_player_misc

col_name types description
game_id character Unique game identifier.
away_team_id integer Unique identifier for the away team.
home_team_id integer Unique identifier for the home team.
team_id integer Unique team identifier.
team_name character Full team display name (e.g. 'Las Vegas Aces').
team_city character Team city or region (e.g. 'Las Vegas').
team_tricode character Three-letter team code (e.g. 'LAS' / 'NYL').
team_slug character URL-safe team identifier (e.g. 'lasvegas-aces' / 'aces').
person_id integer Unique player identifier (V3 endpoints).
first_name character Player's first name.
family_name character Player's family / last name.
name_i character Initialed name (e.g. 'A. Wilson').
player_slug character URL-safe player identifier.
position character Listed roster position (G, F, C, etc.).
comment character Player status / inactive reason (e.g. 'DNP - Coach's Decision', 'Inactive').
jersey_num character Jersey number worn by the player.
minutes character Minutes played, formatted MM:SS (V3 PT-duration parsed) or decimal minutes (V2).
points_off_turnovers integer Points scored off opponent turnovers.
points_second_chance integer Second-chance points scored.
points_fast_break integer Fast-break points scored.
points_paint integer Points scored in the paint.
opp_points_off_turnovers integer Opponent points off turnovers.
opp_points_second_chance integer Opponent points second chance.
opp_points_fast_break integer Opponent points fast break.
opp_points_paint integer Opponent points paint.
blocks integer Total blocks.
blocks_against integer Shots blocked by opponents while attempting.
fouls_personal integer Personal fouls.
fouls_drawn integer Personal fouls drawn (by opponent's actions).

home_team_totals_misc

col_name types description
game_id character Unique game identifier.
away_team_id integer Unique identifier for the away team.
home_team_id integer Unique identifier for the home team.
team_id integer Unique team identifier.
team_name character Full team display name (e.g. 'Las Vegas Aces').
team_city character Team city or region (e.g. 'Las Vegas').
team_tricode character Three-letter team code (e.g. 'LAS' / 'NYL').
team_slug character URL-safe team identifier (e.g. 'lasvegas-aces' / 'aces').
minutes character Minutes played, formatted MM:SS (V3 PT-duration parsed) or decimal minutes (V2).
points_off_turnovers integer Points scored off opponent turnovers.
points_second_chance integer Second-chance points scored.
points_fast_break integer Fast-break points scored.
points_paint integer Points scored in the paint.
opp_points_off_turnovers integer Opponent points off turnovers.
opp_points_second_chance integer Opponent points second chance.
opp_points_fast_break integer Opponent points fast break.
opp_points_paint integer Opponent points paint.
blocks integer Total blocks.
blocks_against integer Shots blocked by opponents while attempting.
fouls_personal integer Personal fouls.
fouls_drawn integer Personal fouls drawn (by opponent's actions).

away_team_totals_misc

col_name types description
game_id character Unique game identifier.
away_team_id integer Unique identifier for the away team.
home_team_id integer Unique identifier for the home team.
team_id integer Unique team identifier.
team_name character Full team display name (e.g. 'Las Vegas Aces').
team_city character Team city or region (e.g. 'Las Vegas').
team_tricode character Three-letter team code (e.g. 'LAS' / 'NYL').
team_slug character URL-safe team identifier (e.g. 'lasvegas-aces' / 'aces').
minutes character Minutes played, formatted MM:SS (V3 PT-duration parsed) or decimal minutes (V2).
points_off_turnovers integer Points scored off opponent turnovers.
points_second_chance integer Second-chance points scored.
points_fast_break integer Fast-break points scored.
points_paint integer Points scored in the paint.
opp_points_off_turnovers integer Opponent points off turnovers.
opp_points_second_chance integer Opponent points second chance.
opp_points_fast_break integer Opponent points fast break.
opp_points_paint integer Opponent points paint.
blocks integer Total blocks.
blocks_against integer Shots blocked by opponents while attempting.
fouls_personal integer Personal fouls.
fouls_drawn integer Personal fouls drawn (by opponent's actions).

Author(s)

Saiem Gilani

See Also

Other WNBA Boxscore V3 Functions: wnba_boxscoreadvancedv3(), wnba_boxscorefourfactorsv3(), wnba_boxscorehustlev2(), wnba_boxscoreplayertrackv3(), wnba_boxscorescoringv3(), wnba_boxscoresummaryv3(), wnba_boxscoretraditionalv3(), wnba_boxscoreusagev3()


Get WNBA Stats API Boxscore Player Tracking V2

Description

Get WNBA Stats API Boxscore Player Tracking V2

Get WNBA Stats API Boxscore Player Tracking V2

Usage

wnba_boxscoreplayertrackv2(game_id, ...)

Arguments

game_id

Game ID

...

Additional arguments passed to an underlying function like httr.

Details

  wnba_boxscoreplayertrackv2(game_id = "1022200034")

Value

Returns a named list of data frames: PlayerStats, TeamStats

PlayerStats

col_name types description
GAME_ID character Unique game identifier.
TEAM_ID character Unique team identifier.
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
TEAM_CITY character Team city or region (e.g. 'Las Vegas').
PLAYER_ID character Unique player identifier.
PLAYER_NAME character Player name.
START_POSITION character
COMMENT character Player status / inactive reason (e.g. 'DNP - Coach's Decision', 'Inactive').
MIN character Minutes played.
SPD character
DIST character
ORBC character
DRBC character
RBC character
TCHS character
SAST character
FTAST character
PASS character
AST character Assists.
CFGM character
CFGA character
CFG_PCT character
UFGM character
UFGA character
UFG_PCT character
FG_PCT character Field goal percentage (0-1).
DFGM character
DFGA character
DFG_PCT character

TeamStats

col_name types description
GAME_ID character Unique game identifier.
TEAM_ID character Unique team identifier.
TEAM_NAME character Full team display name (e.g. 'Las Vegas Aces').
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
TEAM_CITY character Team city or region (e.g. 'Las Vegas').
MIN character Minutes played.
DIST character
ORBC character
DRBC character
RBC character
TCHS character
SAST character
FTAST character
PASS character
AST character Assists.
CFGM character
CFGA character
CFG_PCT character
UFGM character
UFGA character
UFG_PCT character
FG_PCT character Field goal percentage (0-1).
DFGM character
DFGA character
DFG_PCT character

Author(s)

Saiem Gilani

See Also

Other WNBA Boxscore Functions: wnba_boxscoreadvancedv2(), wnba_boxscorefourfactorsv2(), wnba_boxscoremiscv2(), wnba_boxscorescoringv2(), wnba_boxscoresummaryv2(), wnba_boxscoretraditionalv2(), wnba_boxscoreusagev2(), wnba_gamerotation(), wnba_hustlestatsboxscore()


Get WNBA Stats API Boxscore Player Tracking V3

Description

Get WNBA Stats API Boxscore Player Tracking V3

Get WNBA Stats API Boxscore Player Tracking V3

Usage

wnba_boxscoreplayertrackv3(
  game_id = "1022200034",
  start_period = 0,
  end_period = 14,
  start_range = 0,
  end_range = 0,
  range_type = 0,
  ...
)

Arguments

game_id

Game ID

start_period

start_period

end_period

end_period

start_range

start_range

end_range

end_range

range_type

range_type

...

Additional arguments passed to an underlying function like httr.

Details

 wnba_boxscoreplayertrackv3(game_id = "1022200034")

Value

A list of data frames: home_team_player_player_track, away_team_player_player_track, home_team_totals_player_track, away_team_totals_player_track

home_team_player_player_track

col_name types description
game_id character Unique game identifier.
away_team_id integer Unique identifier for the away team.
home_team_id integer Unique identifier for the home team.
team_id integer Unique team identifier.
team_name character Full team display name (e.g. 'Las Vegas Aces').
team_city character Team city or region (e.g. 'Las Vegas').
team_tricode character Three-letter team code (e.g. 'LAS' / 'NYL').
team_slug character URL-safe team identifier (e.g. 'lasvegas-aces' / 'aces').
person_id integer Unique player identifier (V3 endpoints).
first_name character Player's first name.
family_name character Player's family / last name.
name_i character Initialed name (e.g. 'A. Wilson').
player_slug character URL-safe player identifier.
position character Listed roster position (G, F, C, etc.).
comment character Player status / inactive reason (e.g. 'DNP - Coach's Decision', 'Inactive').
jersey_num character Jersey number worn by the player.
minutes character Minutes played, formatted MM:SS (V3 PT-duration parsed) or decimal minutes (V2).
speed numeric Speed.
distance numeric Distance value (in feet for shot data; otherwise context-dependent).
rebound_chances_offensive integer Rebound chances offensive.
rebound_chances_defensive integer Rebound chances defensive.
rebound_chances_total integer Rebound chances total.
touches integer Touches.
secondary_assists integer Secondary assists.
free_throw_assists integer Free throw assists (passes that led to a fouled shot attempt).
passes integer Passes.
assists integer Total assists.
contested_field_goals_made integer Contested field goals made.
contested_field_goals_attempted integer Contested field goal attempts.
contested_field_goal_percentage numeric Contested field goal percentage (0-1).
uncontested_field_goals_made integer Number of uncontested field goals made.
uncontested_field_goals_attempted integer Number of uncontested field goals attempted.
uncontested_field_goals_percentage numeric Uncontested field goals percentage (0-1 decimal).
field_goal_percentage numeric Field Goal Percentage.
defended_at_rim_field_goals_made integer Field goals made allowed when defending at the rim.
defended_at_rim_field_goals_attempted integer Field goal attempts allowed when defending at the rim.
defended_at_rim_field_goal_percentage numeric Field goal percentage allowed at the rim (0-1).

away_team_player_player_track

col_name types description
game_id character Unique game identifier.
away_team_id integer Unique identifier for the away team.
home_team_id integer Unique identifier for the home team.
team_id integer Unique team identifier.
team_name character Full team display name (e.g. 'Las Vegas Aces').
team_city character Team city or region (e.g. 'Las Vegas').
team_tricode character Three-letter team code (e.g. 'LAS' / 'NYL').
team_slug character URL-safe team identifier (e.g. 'lasvegas-aces' / 'aces').
person_id integer Unique player identifier (V3 endpoints).
first_name character Player's first name.
family_name character Player's family / last name.
name_i character Initialed name (e.g. 'A. Wilson').
player_slug character URL-safe player identifier.
position character Listed roster position (G, F, C, etc.).
comment character Player status / inactive reason (e.g. 'DNP - Coach's Decision', 'Inactive').
jersey_num character Jersey number worn by the player.
minutes character Minutes played, formatted MM:SS (V3 PT-duration parsed) or decimal minutes (V2).
speed numeric Speed.
distance numeric Distance value (in feet for shot data; otherwise context-dependent).
rebound_chances_offensive integer Rebound chances offensive.
rebound_chances_defensive integer Rebound chances defensive.
rebound_chances_total integer Rebound chances total.
touches integer Touches.
secondary_assists integer Secondary assists.
free_throw_assists integer Free throw assists (passes that led to a fouled shot attempt).
passes integer Passes.
assists integer Total assists.
contested_field_goals_made integer Contested field goals made.
contested_field_goals_attempted integer Contested field goal attempts.
contested_field_goal_percentage numeric Contested field goal percentage (0-1).
uncontested_field_goals_made integer Number of uncontested field goals made.
uncontested_field_goals_attempted integer Number of uncontested field goals attempted.
uncontested_field_goals_percentage numeric Uncontested field goals percentage (0-1 decimal).
field_goal_percentage numeric Field Goal Percentage.
defended_at_rim_field_goals_made integer Field goals made allowed when defending at the rim.
defended_at_rim_field_goals_attempted integer Field goal attempts allowed when defending at the rim.
defended_at_rim_field_goal_percentage numeric Field goal percentage allowed at the rim (0-1).

home_team_totals_player_track

col_name types description
game_id character Unique game identifier.
away_team_id integer Unique identifier for the away team.
home_team_id integer Unique identifier for the home team.
team_id integer Unique team identifier.
team_name character Full team display name (e.g. 'Las Vegas Aces').
team_city character Team city or region (e.g. 'Las Vegas').
team_tricode character Three-letter team code (e.g. 'LAS' / 'NYL').
team_slug character URL-safe team identifier (e.g. 'lasvegas-aces' / 'aces').
minutes character Minutes played, formatted MM:SS (V3 PT-duration parsed) or decimal minutes (V2).
distance numeric Distance value (in feet for shot data; otherwise context-dependent).
rebound_chances_offensive integer Rebound chances offensive.
rebound_chances_defensive integer Rebound chances defensive.
rebound_chances_total integer Rebound chances total.
touches integer Touches.
secondary_assists integer Secondary assists.
free_throw_assists integer Free throw assists (passes that led to a fouled shot attempt).
passes integer Passes.
assists integer Total assists.
contested_field_goals_made integer Contested field goals made.
contested_field_goals_attempted integer Contested field goal attempts.
contested_field_goal_percentage numeric Contested field goal percentage (0-1).
uncontested_field_goals_made integer Number of uncontested field goals made.
uncontested_field_goals_attempted integer Number of uncontested field goals attempted.
uncontested_field_goals_percentage numeric Uncontested field goals percentage (0-1 decimal).
field_goal_percentage numeric Field Goal Percentage.
defended_at_rim_field_goals_made integer Field goals made allowed when defending at the rim.
defended_at_rim_field_goals_attempted integer Field goal attempts allowed when defending at the rim.
defended_at_rim_field_goal_percentage numeric Field goal percentage allowed at the rim (0-1).

away_team_totals_player_track

col_name types description
game_id character Unique game identifier.
away_team_id integer Unique identifier for the away team.
home_team_id integer Unique identifier for the home team.
team_id integer Unique team identifier.
team_name character Full team display name (e.g. 'Las Vegas Aces').
team_city character Team city or region (e.g. 'Las Vegas').
team_tricode character Three-letter team code (e.g. 'LAS' / 'NYL').
team_slug character URL-safe team identifier (e.g. 'lasvegas-aces' / 'aces').
minutes character Minutes played, formatted MM:SS (V3 PT-duration parsed) or decimal minutes (V2).
distance numeric Distance value (in feet for shot data; otherwise context-dependent).
rebound_chances_offensive integer Rebound chances offensive.
rebound_chances_defensive integer Rebound chances defensive.
rebound_chances_total integer Rebound chances total.
touches integer Touches.
secondary_assists integer Secondary assists.
free_throw_assists integer Free throw assists (passes that led to a fouled shot attempt).
passes integer Passes.
assists integer Total assists.
contested_field_goals_made integer Contested field goals made.
contested_field_goals_attempted integer Contested field goal attempts.
contested_field_goal_percentage numeric Contested field goal percentage (0-1).
uncontested_field_goals_made integer Number of uncontested field goals made.
uncontested_field_goals_attempted integer Number of uncontested field goals attempted.
uncontested_field_goals_percentage numeric Uncontested field goals percentage (0-1 decimal).
field_goal_percentage numeric Field Goal Percentage.
defended_at_rim_field_goals_made integer Field goals made allowed when defending at the rim.
defended_at_rim_field_goals_attempted integer Field goal attempts allowed when defending at the rim.
defended_at_rim_field_goal_percentage numeric Field goal percentage allowed at the rim (0-1).

Author(s)

Saiem Gilani

See Also

Other WNBA Boxscore V3 Functions: wnba_boxscoreadvancedv3(), wnba_boxscorefourfactorsv3(), wnba_boxscorehustlev2(), wnba_boxscoremiscv3(), wnba_boxscorescoringv3(), wnba_boxscoresummaryv3(), wnba_boxscoretraditionalv3(), wnba_boxscoreusagev3()


Get WNBA Stats API Boxscore Scoring V2

Description

Get WNBA Stats API Boxscore Scoring V2

Get WNBA Stats API Boxscore Scoring V2

Usage

wnba_boxscorescoringv2(
  game_id,
  start_period = 0,
  end_period = 14,
  start_range = 0,
  end_range = 0,
  range_type = 0,
  ...
)

Arguments

game_id

Game ID

start_period

start_period

end_period

end_period

start_range

start_range

end_range

end_range

range_type

range_type

...

Additional arguments passed to an underlying function like httr.

Details

  wnba_boxscorescoringv2(game_id = "1022200034")

Value

Returns a named list of data frames: sqlPlayersScoring, sqlTeamsScoring

sqlPlayersScoring

col_name types description
GAME_ID character Unique game identifier.
TEAM_ID character Unique team identifier.
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
TEAM_CITY character Team city or region (e.g. 'Las Vegas').
PLAYER_ID character Unique player identifier.
PLAYER_NAME character Player name.
NICKNAME character Team or athlete nickname.
START_POSITION character
COMMENT character Player status / inactive reason (e.g. 'DNP - Coach's Decision', 'Inactive').
MIN character Minutes played.
PCT_FGA_2PT character
PCT_FGA_3PT character
PCT_PTS_2PT character
PCT_PTS_2PT_MR character
PCT_PTS_3PT character
PCT_PTS_FB character
PCT_PTS_FT character
PCT_PTS_OFF_TOV character
PCT_PTS_PAINT character
PCT_AST_2PM character
PCT_UAST_2PM character
PCT_AST_3PM character
PCT_UAST_3PM character
PCT_AST_FGM character
PCT_UAST_FGM character

sqlTeamsScoring

col_name types description
GAME_ID character Unique game identifier.
TEAM_ID character Unique team identifier.
TEAM_NAME character Full team display name (e.g. 'Las Vegas Aces').
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
TEAM_CITY character Team city or region (e.g. 'Las Vegas').
MIN character Minutes played.
PCT_FGA_2PT character
PCT_FGA_3PT character
PCT_PTS_2PT character
PCT_PTS_2PT_MR character
PCT_PTS_3PT character
PCT_PTS_FB character
PCT_PTS_FT character
PCT_PTS_OFF_TOV character
PCT_PTS_PAINT character
PCT_AST_2PM character
PCT_UAST_2PM character
PCT_AST_3PM character
PCT_UAST_3PM character
PCT_AST_FGM character
PCT_UAST_FGM character

Author(s)

Saiem Gilani

See Also

Other WNBA Boxscore Functions: wnba_boxscoreadvancedv2(), wnba_boxscorefourfactorsv2(), wnba_boxscoremiscv2(), wnba_boxscoreplayertrackv2(), wnba_boxscoresummaryv2(), wnba_boxscoretraditionalv2(), wnba_boxscoreusagev2(), wnba_gamerotation(), wnba_hustlestatsboxscore()


Get WNBA Stats API Boxscore Scoring V3

Description

Get WNBA Stats API Boxscore Scoring V3

Get WNBA Stats API Boxscore Scoring V3

Usage

wnba_boxscorescoringv3(
  game_id = "1022200034",
  start_period = 0,
  end_period = 14,
  start_range = 0,
  end_range = 0,
  range_type = 0,
  ...
)

Arguments

game_id

Game ID

start_period

start_period

end_period

end_period

start_range

start_range

end_range

end_range

range_type

range_type

...

Additional arguments passed to an underlying function like httr.

Details

 wnba_boxscorescoringv3(game_id = "1022200034")

Value

A list of data frames: home_team_player_scoring, away_team_player_scoring, home_team_totals_scoring, away_team_totals_scoring

home_team_player_scoring

col_name types description
game_id character Unique game identifier.
away_team_id integer Unique identifier for the away team.
home_team_id integer Unique identifier for the home team.
team_id integer Unique team identifier.
team_name character Full team display name (e.g. 'Las Vegas Aces').
team_city character Team city or region (e.g. 'Las Vegas').
team_tricode character Three-letter team code (e.g. 'LAS' / 'NYL').
team_slug character URL-safe team identifier (e.g. 'lasvegas-aces' / 'aces').
person_id integer Unique player identifier (V3 endpoints).
first_name character Player's first name.
family_name character Player's family / last name.
name_i character Initialed name (e.g. 'A. Wilson').
player_slug character URL-safe player identifier.
position character Listed roster position (G, F, C, etc.).
comment character Player status / inactive reason (e.g. 'DNP - Coach's Decision', 'Inactive').
jersey_num character Jersey number worn by the player.
minutes character Minutes played, formatted MM:SS (V3 PT-duration parsed) or decimal minutes (V2).
percentage_field_goals_attempted2pt numeric Percentage field goals attempted2pt.
percentage_field_goals_attempted3pt numeric Percentage field goals attempted3pt.
percentage_points2pt numeric Percentage points2pt.
percentage_points_midrange2pt numeric Percentage points midrange2pt.
percentage_points3pt numeric Percentage points3pt.
percentage_points_fast_break numeric Percentage points fast break.
percentage_points_free_throw numeric Percentage points free throw.
percentage_points_off_turnovers numeric Percentage points off turnovers.
percentage_points_paint numeric Percentage points paint.
percentage_assisted2pt numeric Percentage assisted2pt.
percentage_unassisted2pt numeric Percentage unassisted2pt.
percentage_assisted3pt numeric Percentage assisted3pt.
percentage_unassisted3pt numeric Percentage unassisted3pt.
percentage_assisted_fgm numeric Percentage assisted fgm.
percentage_unassisted_fgm numeric Percentage unassisted fgm.

away_team_player_scoring

col_name types description
game_id character Unique game identifier.
away_team_id integer Unique identifier for the away team.
home_team_id integer Unique identifier for the home team.
team_id integer Unique team identifier.
team_name character Full team display name (e.g. 'Las Vegas Aces').
team_city character Team city or region (e.g. 'Las Vegas').
team_tricode character Three-letter team code (e.g. 'LAS' / 'NYL').
team_slug character URL-safe team identifier (e.g. 'lasvegas-aces' / 'aces').
person_id integer Unique player identifier (V3 endpoints).
first_name character Player's first name.
family_name character Player's family / last name.
name_i character Initialed name (e.g. 'A. Wilson').
player_slug character URL-safe player identifier.
position character Listed roster position (G, F, C, etc.).
comment character Player status / inactive reason (e.g. 'DNP - Coach's Decision', 'Inactive').
jersey_num character Jersey number worn by the player.
minutes character Minutes played, formatted MM:SS (V3 PT-duration parsed) or decimal minutes (V2).
percentage_field_goals_attempted2pt numeric Percentage field goals attempted2pt.
percentage_field_goals_attempted3pt numeric Percentage field goals attempted3pt.
percentage_points2pt numeric Percentage points2pt.
percentage_points_midrange2pt numeric Percentage points midrange2pt.
percentage_points3pt numeric Percentage points3pt.
percentage_points_fast_break numeric Percentage points fast break.
percentage_points_free_throw numeric Percentage points free throw.
percentage_points_off_turnovers numeric Percentage points off turnovers.
percentage_points_paint numeric Percentage points paint.
percentage_assisted2pt numeric Percentage assisted2pt.
percentage_unassisted2pt numeric Percentage unassisted2pt.
percentage_assisted3pt numeric Percentage assisted3pt.
percentage_unassisted3pt numeric Percentage unassisted3pt.
percentage_assisted_fgm numeric Percentage assisted fgm.
percentage_unassisted_fgm numeric Percentage unassisted fgm.

home_team_totals_scoring

col_name types description
game_id character Unique game identifier.
away_team_id integer Unique identifier for the away team.
home_team_id integer Unique identifier for the home team.
team_id integer Unique team identifier.
team_name character Full team display name (e.g. 'Las Vegas Aces').
team_city character Team city or region (e.g. 'Las Vegas').
team_tricode character Three-letter team code (e.g. 'LAS' / 'NYL').
team_slug character URL-safe team identifier (e.g. 'lasvegas-aces' / 'aces').
minutes character Minutes played, formatted MM:SS (V3 PT-duration parsed) or decimal minutes (V2).
percentage_field_goals_attempted2pt numeric Percentage field goals attempted2pt.
percentage_field_goals_attempted3pt numeric Percentage field goals attempted3pt.
percentage_points2pt numeric Percentage points2pt.
percentage_points_midrange2pt numeric Percentage points midrange2pt.
percentage_points3pt numeric Percentage points3pt.
percentage_points_fast_break numeric Percentage points fast break.
percentage_points_free_throw numeric Percentage points free throw.
percentage_points_off_turnovers numeric Percentage points off turnovers.
percentage_points_paint numeric Percentage points paint.
percentage_assisted2pt numeric Percentage assisted2pt.
percentage_unassisted2pt numeric Percentage unassisted2pt.
percentage_assisted3pt numeric Percentage assisted3pt.
percentage_unassisted3pt numeric Percentage unassisted3pt.
percentage_assisted_fgm numeric Percentage assisted fgm.
percentage_unassisted_fgm numeric Percentage unassisted fgm.

away_team_totals_scoring

col_name types description
game_id character Unique game identifier.
away_team_id integer Unique identifier for the away team.
home_team_id integer Unique identifier for the home team.
team_id integer Unique team identifier.
team_name character Full team display name (e.g. 'Las Vegas Aces').
team_city character Team city or region (e.g. 'Las Vegas').
team_tricode character Three-letter team code (e.g. 'LAS' / 'NYL').
team_slug character URL-safe team identifier (e.g. 'lasvegas-aces' / 'aces').
minutes character Minutes played, formatted MM:SS (V3 PT-duration parsed) or decimal minutes (V2).
percentage_field_goals_attempted2pt numeric Percentage field goals attempted2pt.
percentage_field_goals_attempted3pt numeric Percentage field goals attempted3pt.
percentage_points2pt numeric Percentage points2pt.
percentage_points_midrange2pt numeric Percentage points midrange2pt.
percentage_points3pt numeric Percentage points3pt.
percentage_points_fast_break numeric Percentage points fast break.
percentage_points_free_throw numeric Percentage points free throw.
percentage_points_off_turnovers numeric Percentage points off turnovers.
percentage_points_paint numeric Percentage points paint.
percentage_assisted2pt numeric Percentage assisted2pt.
percentage_unassisted2pt numeric Percentage unassisted2pt.
percentage_assisted3pt numeric Percentage assisted3pt.
percentage_unassisted3pt numeric Percentage unassisted3pt.
percentage_assisted_fgm numeric Percentage assisted fgm.
percentage_unassisted_fgm numeric Percentage unassisted fgm.

Author(s)

Saiem Gilani

See Also

Other WNBA Boxscore V3 Functions: wnba_boxscoreadvancedv3(), wnba_boxscorefourfactorsv3(), wnba_boxscorehustlev2(), wnba_boxscoremiscv3(), wnba_boxscoreplayertrackv3(), wnba_boxscoresummaryv3(), wnba_boxscoretraditionalv3(), wnba_boxscoreusagev3()


Get WNBA Stats API Boxscore Summary V2

Description

Get WNBA Stats API Boxscore Summary V2

Get WNBA Stats API Boxscore Summary V2

Usage

wnba_boxscoresummaryv2(game_id, ...)

Arguments

game_id

Game ID

...

Additional arguments passed to an underlying function like httr.

Details

  wnba_boxscoresummaryv2(game_id = "1022200034")

Value

Returns a named list of data frames: AvailableVideo, GameInfo, GameSummary, InactivePlayers, LastMeeting, LineScore, Officials, OtherStats, SeasonSeries

GameSummary

col_name types description
GAME_DATE_EST character Game date est.
GAME_SEQUENCE character Game sequence.
GAME_ID character Unique game identifier.
GAME_STATUS_ID character Numeric game status identifier.
GAME_STATUS_TEXT character Game status display text (e.g. 'Final', '4:32 - 4th').
GAMECODE character Gamecode.
HOME_TEAM_ID character Unique identifier for the home team.
VISITOR_TEAM_ID character Unique identifier for visitor team.
SEASON character Season identifier (4-digit year or 'YYYY-YY' string).
LIVE_PERIOD character Live period.
LIVE_PC_TIME character Time / clock value.
NATL_TV_BROADCASTER_ABBREVIATION character Natl tv broadcaster abbreviation.
LIVE_PERIOD_TIME_BCAST character Live period time bcast.
WH_STATUS character Wh status.

OtherStats

col_name types description
LEAGUE_ID character League identifier ('10' = WNBA).
TEAM_ID character Unique team identifier.
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
TEAM_CITY character Team city or region (e.g. 'Las Vegas').
PTS_PAINT character Points scored in the paint.
PTS_2ND_CHANCE character
PTS_FB character
LARGEST_LEAD character Largest lead during the game.
LEAD_CHANGES character Lead changes.
TIMES_TIED character Times tied.
TEAM_TURNOVERS character Team turnovers (turnovers credited to the team rather than a player).
TOTAL_TURNOVERS character Total turnovers (player + team).
TEAM_REBOUNDS character Team rebounds (rebounds credited to the team rather than a player).
PTS_OFF_TO character

Officials

col_name types description
OFFICIAL_ID character Unique official / referee identifier.
FIRST_NAME character Player's first name.
LAST_NAME character Player's last name.
JERSEY_NUM character Jersey number worn by the player.

InactivePlayers

col_name types description
PLAYER_ID character Unique player identifier.
FIRST_NAME character Player's first name.
LAST_NAME character Player's last name.
JERSEY_NUM character Jersey number worn by the player.
TEAM_ID character Unique team identifier.
TEAM_CITY character Team city or region (e.g. 'Las Vegas').
TEAM_NAME character Full team display name (e.g. 'Las Vegas Aces').
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').

GameInfo

col_name types description
GAME_DATE character Game date (YYYY-MM-DD).
ATTENDANCE character Reported attendance.
GAME_TIME character Game start time.

LineScore

col_name types description
GAME_DATE_EST character Game date est.
GAME_SEQUENCE character Game sequence.
GAME_ID character Unique game identifier.
TEAM_ID character Unique team identifier.
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
TEAM_CITY_NAME character Team city name.
TEAM_NICKNAME character Team nickname.
TEAM_WINS_LOSSES character Team wins losses.
PTS_QTR1 character Pts qtr1.
PTS_QTR2 character Pts qtr2.
PTS_QTR3 character Pts qtr3.
PTS_QTR4 character Pts qtr4.
PTS_OT1 character Pts ot1.
PTS_OT2 character
PTS_OT3 character
PTS_OT4 character
PTS_OT5 character
PTS_OT6 character
PTS_OT7 character
PTS_OT8 character
PTS_OT9 character
PTS_OT10 character
PTS character Points scored.

LastMeeting

col_name types description
GAME_ID character Unique game identifier.
LAST_GAME_ID character
LAST_GAME_DATE_EST character
LAST_GAME_HOME_TEAM_ID character
LAST_GAME_HOME_TEAM_CITY character
LAST_GAME_HOME_TEAM_NAME character
LAST_GAME_HOME_TEAM_ABBREVIATION character
LAST_GAME_HOME_TEAM_POINTS character
LAST_GAME_VISITOR_TEAM_ID character
LAST_GAME_VISITOR_TEAM_CITY character
LAST_GAME_VISITOR_TEAM_NAME character
LAST_GAME_VISITOR_TEAM_CITY1 character
LAST_GAME_VISITOR_TEAM_POINTS character

SeasonSeries

col_name types description
GAME_ID character Unique game identifier.
HOME_TEAM_ID character Unique identifier for the home team.
VISITOR_TEAM_ID character Unique identifier for visitor team.
GAME_DATE_EST character Game date est.
HOME_TEAM_WINS character Home team's team wins.
HOME_TEAM_LOSSES character Home team's team losses.
SERIES_LEADER character

AvailableVideo

col_name types description
GAME_ID character Unique game identifier.
VIDEO_AVAILABLE_FLAG character Video available flag.
PT_AVAILABLE character
PT_XYZ_AVAILABLE character
WH_STATUS character Wh status.
HUSTLE_STATUS character
HISTORICAL_STATUS character

Author(s)

Saiem Gilani

See Also

Other WNBA Boxscore Functions: wnba_boxscoreadvancedv2(), wnba_boxscorefourfactorsv2(), wnba_boxscoremiscv2(), wnba_boxscoreplayertrackv2(), wnba_boxscorescoringv2(), wnba_boxscoretraditionalv2(), wnba_boxscoreusagev2(), wnba_gamerotation(), wnba_hustlestatsboxscore()


Get WNBA Stats API Boxscore Summary V3

Description

Get WNBA Stats API Boxscore Summary V3

Get WNBA Stats API Boxscore Summary V3

Usage

wnba_boxscoresummaryv3(game_id = "1022200034", ...)

Arguments

game_id

Game ID - 10-digit zero-padded ID (e.g., '1022200034')

...

Additional arguments passed to an underlying function like httr.

Details

 wnba_boxscoresummaryv3(game_id = "1022200034")

Value

Returns a named list of data frames: game_summary, game_info, arena_info, officials, line_score, inactive_players, last_five_meetings, other_stats, available_video

game_summary

col_name types description
game_date character Game date (YYYY-MM-DD).
game_sequence integer Game sequence.
game_id character Unique game identifier.
game_status_id integer Numeric game status identifier.
game_status_text character Game status display text (e.g. 'Final', '4:32 - 4th').
gamecode character Gamecode.
home_team_id integer Unique identifier for the home team.
visitor_team_id integer Unique identifier for visitor team.
season character Season identifier (4-digit year or 'YYYY-YY' string).
live_period integer Live period.
live_pc_time character Time / clock value.
natl_tv_broadcaster_abbreviation character Natl tv broadcaster abbreviation.
home_tv_broadcaster_abbreviation character Home team's tv broadcaster abbreviation.
away_tv_broadcaster_abbreviation character Away team's tv broadcaster abbreviation.
live_period_time_bcast character Live period time bcast.
arena_name character Arena name.
wh_status integer Wh status.

line_score

col_name types description
game_date_est character Game date est.
game_sequence integer Game sequence.
game_id character Unique game identifier.
team_id integer Unique team identifier.
team_abbreviation character Short team abbreviation (e.g. 'LAS').
team_city_name character Team city name.
team_name character Full team display name (e.g. 'Las Vegas Aces').
team_wins_losses character Team wins losses.
pts_qtr1 integer Pts qtr1.
pts_qtr2 integer Pts qtr2.
pts_qtr3 integer Pts qtr3.
pts_qtr4 integer Pts qtr4.
pts_ot1 integer Pts ot1.
pts integer Points scored.

Author(s)

Saiem Gilani

See Also

Other WNBA Boxscore V3 Functions: wnba_boxscoreadvancedv3(), wnba_boxscorefourfactorsv3(), wnba_boxscorehustlev2(), wnba_boxscoremiscv3(), wnba_boxscoreplayertrackv3(), wnba_boxscorescoringv3(), wnba_boxscoretraditionalv3(), wnba_boxscoreusagev3()


Get WNBA Stats API Boxscore Traditional V2

Description

Get WNBA Stats API Boxscore Traditional V2

Get WNBA Stats API Boxscore Traditional V2

Usage

wnba_boxscoretraditionalv2(
  game_id,
  start_period = 0,
  end_period = 14,
  start_range = 0,
  end_range = 0,
  range_type = 0,
  ...
)

Arguments

game_id

Game ID

start_period

start_period

end_period

end_period

start_range

start_range

end_range

end_range

range_type

range_type

...

Additional arguments passed to an underlying function like httr.

Details

  wnba_boxscoretraditionalv2(game_id = "1022200034")

Value

A list of data frames: PlayerStats, TeamStarterBenchStats, TeamStats

PlayerStats

col_name types description
GAME_ID character Unique game identifier.
TEAM_ID character Unique team identifier.
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
TEAM_CITY character Team city or region (e.g. 'Las Vegas').
PLAYER_ID character Unique player identifier.
PLAYER_NAME character Player name.
NICKNAME character Team or athlete nickname.
START_POSITION character
COMMENT character Player status / inactive reason (e.g. 'DNP - Coach's Decision', 'Inactive').
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
STL character Steals.
BLK character Blocks.
TO character
PF character Personal fouls.
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.

TeamStats

col_name types description
GAME_ID character Unique game identifier.
TEAM_ID character Unique team identifier.
TEAM_NAME character Full team display name (e.g. 'Las Vegas Aces').
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
TEAM_CITY character Team city or region (e.g. 'Las Vegas').
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
STL character Steals.
BLK character Blocks.
TO character
PF character Personal fouls.
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.

TeamStarterBenchStats

col_name types description
GAME_ID character Unique game identifier.
TEAM_ID character Unique team identifier.
TEAM_NAME character Full team display name (e.g. 'Las Vegas Aces').
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
TEAM_CITY character Team city or region (e.g. 'Las Vegas').
STARTERS_BENCH character
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
STL character Steals.
BLK character Blocks.
TO character
PF character Personal fouls.
PTS character Points scored.

Author(s)

Saiem Gilani

See Also

Other WNBA Boxscore Functions: wnba_boxscoreadvancedv2(), wnba_boxscorefourfactorsv2(), wnba_boxscoremiscv2(), wnba_boxscoreplayertrackv2(), wnba_boxscorescoringv2(), wnba_boxscoresummaryv2(), wnba_boxscoreusagev2(), wnba_gamerotation(), wnba_hustlestatsboxscore()


Get WNBA Stats API Boxscore Traditional V3

Description

Get WNBA Stats API Boxscore Traditional V3

Get WNBA Stats API Boxscore Traditional V3

Usage

wnba_boxscoretraditionalv3(
  game_id = "1022200034",
  start_period = 0,
  end_period = 14,
  start_range = 0,
  end_range = 0,
  range_type = 0,
  ...
)

Arguments

game_id

Game ID

start_period

start_period

end_period

end_period

start_range

start_range

end_range

end_range

range_type

range_type

...

Additional arguments passed to an underlying function like httr.

Details

 wnba_boxscoretraditionalv3(game_id = "1022200034")

Value

A list of data frames: home_team_player_traditional, away_team_player_traditional, home_team_totals_traditional, away_team_totals_traditional, home_team_starters_totals, away_team_starters_totals, home_team_bench_totals, away_team_bench_totals

home_team_player_traditional

col_name types description
game_id character Unique game identifier.
away_team_id integer Unique identifier for the away team.
home_team_id integer Unique identifier for the home team.
team_id integer Unique team identifier.
team_name character Full team display name (e.g. 'Las Vegas Aces').
team_city character Team city or region (e.g. 'Las Vegas').
team_tricode character Three-letter team code (e.g. 'LAS' / 'NYL').
team_slug character URL-safe team identifier (e.g. 'lasvegas-aces' / 'aces').
person_id integer Unique player identifier (V3 endpoints).
first_name character Player's first name.
family_name character Player's family / last name.
name_i character Initialed name (e.g. 'A. Wilson').
player_slug character URL-safe player identifier.
position character Listed roster position (G, F, C, etc.).
comment character Player status / inactive reason (e.g. 'DNP - Coach's Decision', 'Inactive').
jersey_num character Jersey number worn by the player.
minutes character Minutes played, formatted MM:SS (V3 PT-duration parsed) or decimal minutes (V2).
field_goals_made integer Field goals made (2-pt + 3-pt).
field_goals_attempted integer Field goal attempts (2-pt + 3-pt).
field_goals_percentage numeric Field goal percentage (0-1 decimal).
three_pointers_made integer Three-point field goals made.
three_pointers_attempted integer Three-point field goal attempts.
three_pointers_percentage numeric Three-point field goal percentage (0-1 decimal).
free_throws_made integer Free throws made.
free_throws_attempted integer Free throw attempts.
free_throws_percentage numeric Free throw percentage (0-1 decimal).
rebounds_offensive integer Offensive rebounds.
rebounds_defensive integer Defensive rebounds.
rebounds_total integer Total rebounds.
assists integer Total assists.
steals integer Total steals.
blocks integer Total blocks.
turnovers integer Total turnovers.
fouls_personal integer Personal fouls.
points integer Points scored.
plus_minus_points numeric Plus/minus point differential while on court.

away_team_player_traditional

col_name types description
game_id character Unique game identifier.
away_team_id integer Unique identifier for the away team.
home_team_id integer Unique identifier for the home team.
team_id integer Unique team identifier.
team_name character Full team display name (e.g. 'Las Vegas Aces').
team_city character Team city or region (e.g. 'Las Vegas').
team_tricode character Three-letter team code (e.g. 'LAS' / 'NYL').
team_slug character URL-safe team identifier (e.g. 'lasvegas-aces' / 'aces').
person_id integer Unique player identifier (V3 endpoints).
first_name character Player's first name.
family_name character Player's family / last name.
name_i character Initialed name (e.g. 'A. Wilson').
player_slug character URL-safe player identifier.
position character Listed roster position (G, F, C, etc.).
comment character Player status / inactive reason (e.g. 'DNP - Coach's Decision', 'Inactive').
jersey_num character Jersey number worn by the player.
minutes character Minutes played, formatted MM:SS (V3 PT-duration parsed) or decimal minutes (V2).
field_goals_made integer Field goals made (2-pt + 3-pt).
field_goals_attempted integer Field goal attempts (2-pt + 3-pt).
field_goals_percentage numeric Field goal percentage (0-1 decimal).
three_pointers_made integer Three-point field goals made.
three_pointers_attempted integer Three-point field goal attempts.
three_pointers_percentage numeric Three-point field goal percentage (0-1 decimal).
free_throws_made integer Free throws made.
free_throws_attempted integer Free throw attempts.
free_throws_percentage numeric Free throw percentage (0-1 decimal).
rebounds_offensive integer Offensive rebounds.
rebounds_defensive integer Defensive rebounds.
rebounds_total integer Total rebounds.
assists integer Total assists.
steals integer Total steals.
blocks integer Total blocks.
turnovers integer Total turnovers.
fouls_personal integer Personal fouls.
points integer Points scored.
plus_minus_points numeric Plus/minus point differential while on court.

home_team_totals_traditional

col_name types description
game_id character Unique game identifier.
away_team_id integer Unique identifier for the away team.
home_team_id integer Unique identifier for the home team.
team_id integer Unique team identifier.
team_name character Full team display name (e.g. 'Las Vegas Aces').
team_city character Team city or region (e.g. 'Las Vegas').
team_tricode character Three-letter team code (e.g. 'LAS' / 'NYL').
team_slug character URL-safe team identifier (e.g. 'lasvegas-aces' / 'aces').
minutes character Minutes played, formatted MM:SS (V3 PT-duration parsed) or decimal minutes (V2).
field_goals_made integer Field goals made (2-pt + 3-pt).
field_goals_attempted integer Field goal attempts (2-pt + 3-pt).
field_goals_percentage numeric Field goal percentage (0-1 decimal).
three_pointers_made integer Three-point field goals made.
three_pointers_attempted integer Three-point field goal attempts.
three_pointers_percentage numeric Three-point field goal percentage (0-1 decimal).
free_throws_made integer Free throws made.
free_throws_attempted integer Free throw attempts.
free_throws_percentage numeric Free throw percentage (0-1 decimal).
rebounds_offensive integer Offensive rebounds.
rebounds_defensive integer Defensive rebounds.
rebounds_total integer Total rebounds.
assists integer Total assists.
steals integer Total steals.
blocks integer Total blocks.
turnovers integer Total turnovers.
fouls_personal integer Personal fouls.
points integer Points scored.
plus_minus_points numeric Plus/minus point differential while on court.

away_team_totals_traditional

col_name types description
game_id character Unique game identifier.
away_team_id integer Unique identifier for the away team.
home_team_id integer Unique identifier for the home team.
team_id integer Unique team identifier.
team_name character Full team display name (e.g. 'Las Vegas Aces').
team_city character Team city or region (e.g. 'Las Vegas').
team_tricode character Three-letter team code (e.g. 'LAS' / 'NYL').
team_slug character URL-safe team identifier (e.g. 'lasvegas-aces' / 'aces').
minutes character Minutes played, formatted MM:SS (V3 PT-duration parsed) or decimal minutes (V2).
field_goals_made integer Field goals made (2-pt + 3-pt).
field_goals_attempted integer Field goal attempts (2-pt + 3-pt).
field_goals_percentage numeric Field goal percentage (0-1 decimal).
three_pointers_made integer Three-point field goals made.
three_pointers_attempted integer Three-point field goal attempts.
three_pointers_percentage numeric Three-point field goal percentage (0-1 decimal).
free_throws_made integer Free throws made.
free_throws_attempted integer Free throw attempts.
free_throws_percentage numeric Free throw percentage (0-1 decimal).
rebounds_offensive integer Offensive rebounds.
rebounds_defensive integer Defensive rebounds.
rebounds_total integer Total rebounds.
assists integer Total assists.
steals integer Total steals.
blocks integer Total blocks.
turnovers integer Total turnovers.
fouls_personal integer Personal fouls.
points integer Points scored.
plus_minus_points numeric Plus/minus point differential while on court.

home_team_starters_totals

col_name types description
game_id character Unique game identifier.
away_team_id integer Unique identifier for the away team.
home_team_id integer Unique identifier for the home team.
team_id integer Unique team identifier.
team_name character Full team display name (e.g. 'Las Vegas Aces').
team_city character Team city or region (e.g. 'Las Vegas').
team_tricode character Three-letter team code (e.g. 'LAS' / 'NYL').
team_slug character URL-safe team identifier (e.g. 'lasvegas-aces' / 'aces').
minutes character Minutes played, formatted MM:SS (V3 PT-duration parsed) or decimal minutes (V2).
field_goals_made integer Field goals made (2-pt + 3-pt).
field_goals_attempted integer Field goal attempts (2-pt + 3-pt).
field_goals_percentage numeric Field goal percentage (0-1 decimal).
three_pointers_made integer Three-point field goals made.
three_pointers_attempted integer Three-point field goal attempts.
three_pointers_percentage numeric Three-point field goal percentage (0-1 decimal).
free_throws_made integer Free throws made.
free_throws_attempted integer Free throw attempts.
free_throws_percentage numeric Free throw percentage (0-1 decimal).
rebounds_offensive integer Offensive rebounds.
rebounds_defensive integer Defensive rebounds.
rebounds_total integer Total rebounds.
assists integer Total assists.
steals integer Total steals.
blocks integer Total blocks.
turnovers integer Total turnovers.
fouls_personal integer Personal fouls.
points integer Points scored.

away_team_starters_totals

col_name types description
game_id character Unique game identifier.
away_team_id integer Unique identifier for the away team.
home_team_id integer Unique identifier for the home team.
team_id integer Unique team identifier.
team_name character Full team display name (e.g. 'Las Vegas Aces').
team_city character Team city or region (e.g. 'Las Vegas').
team_tricode character Three-letter team code (e.g. 'LAS' / 'NYL').
team_slug character URL-safe team identifier (e.g. 'lasvegas-aces' / 'aces').
minutes character Minutes played, formatted MM:SS (V3 PT-duration parsed) or decimal minutes (V2).
field_goals_made integer Field goals made (2-pt + 3-pt).
field_goals_attempted integer Field goal attempts (2-pt + 3-pt).
field_goals_percentage numeric Field goal percentage (0-1 decimal).
three_pointers_made integer Three-point field goals made.
three_pointers_attempted integer Three-point field goal attempts.
three_pointers_percentage numeric Three-point field goal percentage (0-1 decimal).
free_throws_made integer Free throws made.
free_throws_attempted integer Free throw attempts.
free_throws_percentage numeric Free throw percentage (0-1 decimal).
rebounds_offensive integer Offensive rebounds.
rebounds_defensive integer Defensive rebounds.
rebounds_total integer Total rebounds.
assists integer Total assists.
steals integer Total steals.
blocks integer Total blocks.
turnovers integer Total turnovers.
fouls_personal integer Personal fouls.
points integer Points scored.

home_team_bench_totals

col_name types description
game_id character Unique game identifier.
away_team_id integer Unique identifier for the away team.
home_team_id integer Unique identifier for the home team.
team_id integer Unique team identifier.
team_name character Full team display name (e.g. 'Las Vegas Aces').
team_city character Team city or region (e.g. 'Las Vegas').
team_tricode character Three-letter team code (e.g. 'LAS' / 'NYL').
team_slug character URL-safe team identifier (e.g. 'lasvegas-aces' / 'aces').
minutes character Minutes played, formatted MM:SS (V3 PT-duration parsed) or decimal minutes (V2).
field_goals_made integer Field goals made (2-pt + 3-pt).
field_goals_attempted integer Field goal attempts (2-pt + 3-pt).
field_goals_percentage numeric Field goal percentage (0-1 decimal).
three_pointers_made integer Three-point field goals made.
three_pointers_attempted integer Three-point field goal attempts.
three_pointers_percentage numeric Three-point field goal percentage (0-1 decimal).
free_throws_made integer Free throws made.
free_throws_attempted integer Free throw attempts.
free_throws_percentage numeric Free throw percentage (0-1 decimal).
rebounds_offensive integer Offensive rebounds.
rebounds_defensive integer Defensive rebounds.
rebounds_total integer Total rebounds.
assists integer Total assists.
steals integer Total steals.
blocks integer Total blocks.
turnovers integer Total turnovers.
fouls_personal integer Personal fouls.
points integer Points scored.

away_team_bench_totals

col_name types description
game_id character Unique game identifier.
away_team_id integer Unique identifier for the away team.
home_team_id integer Unique identifier for the home team.
team_id integer Unique team identifier.
team_name character Full team display name (e.g. 'Las Vegas Aces').
team_city character Team city or region (e.g. 'Las Vegas').
team_tricode character Three-letter team code (e.g. 'LAS' / 'NYL').
team_slug character URL-safe team identifier (e.g. 'lasvegas-aces' / 'aces').
minutes character Minutes played, formatted MM:SS (V3 PT-duration parsed) or decimal minutes (V2).
field_goals_made integer Field goals made (2-pt + 3-pt).
field_goals_attempted integer Field goal attempts (2-pt + 3-pt).
field_goals_percentage numeric Field goal percentage (0-1 decimal).
three_pointers_made integer Three-point field goals made.
three_pointers_attempted integer Three-point field goal attempts.
three_pointers_percentage numeric Three-point field goal percentage (0-1 decimal).
free_throws_made integer Free throws made.
free_throws_attempted integer Free throw attempts.
free_throws_percentage numeric Free throw percentage (0-1 decimal).
rebounds_offensive integer Offensive rebounds.
rebounds_defensive integer Defensive rebounds.
rebounds_total integer Total rebounds.
assists integer Total assists.
steals integer Total steals.
blocks integer Total blocks.
turnovers integer Total turnovers.
fouls_personal integer Personal fouls.
points integer Points scored.

Author(s)

Saiem Gilani

See Also

Other WNBA Boxscore V3 Functions: wnba_boxscoreadvancedv3(), wnba_boxscorefourfactorsv3(), wnba_boxscorehustlev2(), wnba_boxscoremiscv3(), wnba_boxscoreplayertrackv3(), wnba_boxscorescoringv3(), wnba_boxscoresummaryv3(), wnba_boxscoreusagev3()


Get WNBA Stats API Boxscore Usage V2

Description

Get WNBA Stats API Boxscore Usage V2

Get WNBA Stats API Boxscore Usage V2

Usage

wnba_boxscoreusagev2(
  game_id,
  start_period = 0,
  end_period = 14,
  start_range = 0,
  end_range = 0,
  range_type = 0,
  ...
)

Arguments

game_id

Game ID

start_period

start_period

end_period

end_period

start_range

start_range

end_range

end_range

range_type

range_type

...

Additional arguments passed to an underlying function like httr.

Details

  wnba_boxscoreusagev2(game_id = "1022200034")

Value

Returns a named list of data frames: sqlPlayersUsage, sqlTeamsUsage

sqlPlayersUsage

col_name types description
GAME_ID character Unique game identifier.
TEAM_ID character Unique team identifier.
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
TEAM_CITY character Team city or region (e.g. 'Las Vegas').
PLAYER_ID character Unique player identifier.
PLAYER_NAME character Player name.
NICKNAME character Team or athlete nickname.
START_POSITION character
COMMENT character Player status / inactive reason (e.g. 'DNP - Coach's Decision', 'Inactive').
MIN character Minutes played.
USG_PCT character Usage percentage (0-1).
PCT_FGM character
PCT_FGA character
PCT_FG3M character
PCT_FG3A character
PCT_FTM character
PCT_FTA character
PCT_OREB character
PCT_DREB character
PCT_REB character
PCT_AST character
PCT_TOV character
PCT_STL character
PCT_BLK character
PCT_BLKA character
PCT_PF character
PCT_PFD character
PCT_PTS character

sqlTeamsUsage

col_name types description
GAME_ID character Unique game identifier.
TEAM_ID character Unique team identifier.
TEAM_NAME character Full team display name (e.g. 'Las Vegas Aces').
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
TEAM_CITY character Team city or region (e.g. 'Las Vegas').
MIN character Minutes played.
USG_PCT character Usage percentage (0-1).
PCT_FGM character
PCT_FGA character
PCT_FG3M character
PCT_FG3A character
PCT_FTM character
PCT_FTA character
PCT_OREB character
PCT_DREB character
PCT_REB character
PCT_AST character
PCT_TOV character
PCT_STL character
PCT_BLK character
PCT_BLKA character
PCT_PF character
PCT_PFD character
PCT_PTS character

Author(s)

Saiem Gilani

See Also

Other WNBA Boxscore Functions: wnba_boxscoreadvancedv2(), wnba_boxscorefourfactorsv2(), wnba_boxscoremiscv2(), wnba_boxscoreplayertrackv2(), wnba_boxscorescoringv2(), wnba_boxscoresummaryv2(), wnba_boxscoretraditionalv2(), wnba_gamerotation(), wnba_hustlestatsboxscore()


Get WNBA Stats API Boxscore Usage V3

Description

Get WNBA Stats API Boxscore Usage V3

Get WNBA Stats API Boxscore Usage V3

Usage

wnba_boxscoreusagev3(
  game_id = "1022200034",
  start_period = 0,
  end_period = 14,
  start_range = 0,
  end_range = 0,
  range_type = 0,
  ...
)

Arguments

game_id

Game ID - 10-digit zero-padded ID (e.g., '1022200034')

start_period

start_period

end_period

end_period

start_range

start_range

end_range

end_range

range_type

range_type

...

Additional arguments passed to an underlying function like httr.

Details

 wnba_boxscoreusagev3(game_id = "1022200034")

Value

Returns a named list of data frames: home_team_player_usage, away_team_player_usage, home_team_totals_usage, away_team_totals_usage

home_team_player_usage

col_name types description
game_id character Unique game identifier.
away_team_id integer Unique identifier for the away team.
home_team_id integer Unique identifier for the home team.
team_id integer Unique team identifier.
team_name character Full team display name (e.g. 'Las Vegas Aces').
team_city character Team city or region (e.g. 'Las Vegas').
team_tricode character Three-letter team code (e.g. 'LAS' / 'NYL').
team_slug character URL-safe team identifier (e.g. 'lasvegas-aces' / 'aces').
person_id integer Unique player identifier (V3 endpoints).
first_name character Player's first name.
family_name character Player's family / last name.
name_i character Initialed name (e.g. 'A. Wilson').
player_slug character URL-safe player identifier.
position character Listed roster position (G, F, C, etc.).
comment character Player status / inactive reason (e.g. 'DNP - Coach's Decision', 'Inactive').
jersey_num character Jersey number worn by the player.
minutes character Minutes played, formatted MM:SS (V3 PT-duration parsed) or decimal minutes (V2).
usage_percentage numeric Usage percentage (0-1).
percentage_field_goals_made numeric Number of percentage field goals made.
percentage_field_goals_attempted numeric Number of percentage field goals attempted.
percentage_three_pointers_made numeric Number of percentage three pointers made.
percentage_three_pointers_attempted numeric Number of percentage three pointers attempted.
percentage_free_throws_made numeric Number of percentage free throws made.
percentage_free_throws_attempted numeric Number of percentage free throws attempted.
percentage_rebounds_offensive numeric Percentage rebounds offensive.
percentage_rebounds_defensive numeric Percentage rebounds defensive.
percentage_rebounds_total numeric Percentage rebounds total.
percentage_assists numeric Percentage assists.
percentage_turnovers numeric Percentage turnovers.
percentage_steals numeric Percentage steals.
percentage_blocks numeric Percentage blocks.
percentage_blocks_allowed numeric Percentage blocks allowed.
percentage_personal_fouls numeric Percentage personal fouls.
percentage_personal_fouls_drawn numeric Percentage personal fouls drawn.
percentage_points numeric Percentage points.

away_team_player_usage

col_name types description
game_id character Unique game identifier.
away_team_id integer Unique identifier for the away team.
home_team_id integer Unique identifier for the home team.
team_id integer Unique team identifier.
team_name character Full team display name (e.g. 'Las Vegas Aces').
team_city character Team city or region (e.g. 'Las Vegas').
team_tricode character Three-letter team code (e.g. 'LAS' / 'NYL').
team_slug character URL-safe team identifier (e.g. 'lasvegas-aces' / 'aces').
person_id integer Unique player identifier (V3 endpoints).
first_name character Player's first name.
family_name character Player's family / last name.
name_i character Initialed name (e.g. 'A. Wilson').
player_slug character URL-safe player identifier.
position character Listed roster position (G, F, C, etc.).
comment character Player status / inactive reason (e.g. 'DNP - Coach's Decision', 'Inactive').
jersey_num character Jersey number worn by the player.
minutes character Minutes played, formatted MM:SS (V3 PT-duration parsed) or decimal minutes (V2).
usage_percentage numeric Usage percentage (0-1).
percentage_field_goals_made numeric Number of percentage field goals made.
percentage_field_goals_attempted numeric Number of percentage field goals attempted.
percentage_three_pointers_made numeric Number of percentage three pointers made.
percentage_three_pointers_attempted numeric Number of percentage three pointers attempted.
percentage_free_throws_made numeric Number of percentage free throws made.
percentage_free_throws_attempted numeric Number of percentage free throws attempted.
percentage_rebounds_offensive numeric Percentage rebounds offensive.
percentage_rebounds_defensive numeric Percentage rebounds defensive.
percentage_rebounds_total numeric Percentage rebounds total.
percentage_assists numeric Percentage assists.
percentage_turnovers numeric Percentage turnovers.
percentage_steals numeric Percentage steals.
percentage_blocks numeric Percentage blocks.
percentage_blocks_allowed numeric Percentage blocks allowed.
percentage_personal_fouls numeric Percentage personal fouls.
percentage_personal_fouls_drawn numeric Percentage personal fouls drawn.
percentage_points numeric Percentage points.

home_team_totals_usage

col_name types description
game_id character Unique game identifier.
away_team_id integer Unique identifier for the away team.
home_team_id integer Unique identifier for the home team.
team_id integer Unique team identifier.
team_name character Full team display name (e.g. 'Las Vegas Aces').
team_city character Team city or region (e.g. 'Las Vegas').
team_tricode character Three-letter team code (e.g. 'LAS' / 'NYL').
team_slug character URL-safe team identifier (e.g. 'lasvegas-aces' / 'aces').
minutes character Minutes played, formatted MM:SS (V3 PT-duration parsed) or decimal minutes (V2).
usage_percentage numeric Usage percentage (0-1).
percentage_field_goals_made numeric Number of percentage field goals made.
percentage_field_goals_attempted numeric Number of percentage field goals attempted.
percentage_three_pointers_made numeric Number of percentage three pointers made.
percentage_three_pointers_attempted numeric Number of percentage three pointers attempted.
percentage_free_throws_made numeric Number of percentage free throws made.
percentage_free_throws_attempted numeric Number of percentage free throws attempted.
percentage_rebounds_offensive numeric Percentage rebounds offensive.
percentage_rebounds_defensive numeric Percentage rebounds defensive.
percentage_rebounds_total numeric Percentage rebounds total.
percentage_assists numeric Percentage assists.
percentage_turnovers numeric Percentage turnovers.
percentage_steals numeric Percentage steals.
percentage_blocks numeric Percentage blocks.
percentage_blocks_allowed numeric Percentage blocks allowed.
percentage_personal_fouls numeric Percentage personal fouls.
percentage_personal_fouls_drawn numeric Percentage personal fouls drawn.
percentage_points numeric Percentage points.

away_team_totals_usage

col_name types description
game_id character Unique game identifier.
away_team_id integer Unique identifier for the away team.
home_team_id integer Unique identifier for the home team.
team_id integer Unique team identifier.
team_name character Full team display name (e.g. 'Las Vegas Aces').
team_city character Team city or region (e.g. 'Las Vegas').
team_tricode character Three-letter team code (e.g. 'LAS' / 'NYL').
team_slug character URL-safe team identifier (e.g. 'lasvegas-aces' / 'aces').
minutes character Minutes played, formatted MM:SS (V3 PT-duration parsed) or decimal minutes (V2).
usage_percentage numeric Usage percentage (0-1).
percentage_field_goals_made numeric Number of percentage field goals made.
percentage_field_goals_attempted numeric Number of percentage field goals attempted.
percentage_three_pointers_made numeric Number of percentage three pointers made.
percentage_three_pointers_attempted numeric Number of percentage three pointers attempted.
percentage_free_throws_made numeric Number of percentage free throws made.
percentage_free_throws_attempted numeric Number of percentage free throws attempted.
percentage_rebounds_offensive numeric Percentage rebounds offensive.
percentage_rebounds_defensive numeric Percentage rebounds defensive.
percentage_rebounds_total numeric Percentage rebounds total.
percentage_assists numeric Percentage assists.
percentage_turnovers numeric Percentage turnovers.
percentage_steals numeric Percentage steals.
percentage_blocks numeric Percentage blocks.
percentage_blocks_allowed numeric Percentage blocks allowed.
percentage_personal_fouls numeric Percentage personal fouls.
percentage_personal_fouls_drawn numeric Percentage personal fouls drawn.
percentage_points numeric Percentage points.

Author(s)

Saiem Gilani

See Also

Other WNBA Boxscore V3 Functions: wnba_boxscoreadvancedv3(), wnba_boxscorefourfactorsv3(), wnba_boxscorehustlev2(), wnba_boxscoremiscv3(), wnba_boxscoreplayertrackv3(), wnba_boxscorescoringv3(), wnba_boxscoresummaryv3(), wnba_boxscoretraditionalv3()


Get WNBA Stats API All Players

Description

Get WNBA Stats API All Players

Get WNBA Stats API All Players

Usage

wnba_commonallplayers(
  is_only_current_season = 0,
  league_id = "10",
  season = most_recent_wnba_season() - 1,
  ...
)

Arguments

is_only_current_season

is_only_current_season

league_id

league_id

season

season

...

Additional arguments passed to an underlying function like httr.

Details

  wnba_commonallplayers(league_id = '10', season = most_recent_wnba_season() - 1)

Value

Return a named list of data frames: CommonAllPlayers

CommonAllPlayers

col_name types description
PERSON_ID character Unique player identifier (V3 endpoints).
DISPLAY_LAST_COMMA_FIRST character
DISPLAY_FIRST_LAST character
ROSTERSTATUS character
FROM_YEAR character
TO_YEAR character
PLAYERCODE character
PLAYER_SLUG character URL-safe player identifier.
TEAM_ID character Unique team identifier.
TEAM_CITY character Team city or region (e.g. 'Las Vegas').
TEAM_NAME character Full team display name (e.g. 'Las Vegas Aces').
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
TEAM_CODE character
TEAM_SLUG character URL-safe team identifier (e.g. 'lasvegas-aces' / 'aces').
IS_NBA_ASSIGNED character
NBA_ASSIGNED_TEAM_ID character
GAMES_PLAYED_FLAG character

Author(s)

Saiem Gilani

See Also

Other WNBA Roster Functions: wnba_commonplayerinfo(), wnba_commonteamroster()


Get WNBA Stats API Player Info

Description

Get WNBA Stats API Player Info

Get WNBA Stats API Player Info

Usage

wnba_commonplayerinfo(league_id = "10", player_id = "1628932", ...)

Arguments

league_id

league_id

player_id

player_id

...

Additional arguments passed to an underlying function like httr.

Details

 wnba_commonplayerinfo(league_id = '10', player_id = '1628932')

Value

Return a named list of data frames: CommonPlayerInfo, PlayerHeadlineStats, AvailableSeasons

CommonPlayerInfo

col_name types description
PERSON_ID character Unique player identifier (V3 endpoints).
FIRST_NAME character Player's first name.
LAST_NAME character Player's last name.
DISPLAY_FIRST_LAST character
DISPLAY_LAST_COMMA_FIRST character
DISPLAY_FI_LAST character
PLAYER_SLUG character URL-safe player identifier.
BIRTHDATE character
SCHOOL character Player's school / college (when distinct from 'college').
COUNTRY character Country (full name or code).
LAST_AFFILIATION character
HEIGHT character Player height (string e.g. '6-2' or inches).
WEIGHT character Player weight in pounds.
SEASON_EXP character
JERSEY character Jersey number worn by the player.
POSITION character Listed roster position (G, F, C, etc.).
ROSTERSTATUS character
GAMES_PLAYED_CURRENT_SEASON_FLAG character
TEAM_ID character Unique team identifier.
TEAM_NAME character Full team display name (e.g. 'Las Vegas Aces').
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
TEAM_CODE character
TEAM_CITY character Team city or region (e.g. 'Las Vegas').
PLAYERCODE character
FROM_YEAR character
TO_YEAR character
DLEAGUE_FLAG character
NBA_FLAG character
GAMES_PLAYED_FLAG character
DRAFT_YEAR character Draft year (4-digit).
DRAFT_ROUND character Round of the draft selection.
DRAFT_NUMBER character
GREATEST_75_FLAG character

PlayerHeadlineStats

col_name types description
PLAYER_ID character Unique player identifier.
PLAYER_NAME character Player name.
TimeFrame character
PTS character Points scored.
AST character Assists.
REB character Total rebounds.
ALL_STAR_APPEARANCES character

AvailableSeasons

col_name types description
SEASON_ID character Unique season identifier.

Author(s)

Saiem Gilani

See Also

Other WNBA Roster Functions: wnba_commonallplayers(), wnba_commonteamroster()


Get WNBA Stats API Playoff Series

Description

Get WNBA Stats API Playoff Series

Get WNBA Stats API Playoff Series

Usage

wnba_commonplayoffseries(
  league_id = "10",
  season = most_recent_wnba_season() - 2,
  series_id = "",
  ...
)

Arguments

league_id

league_id

season

season

series_id

series_id

...

Additional arguments passed to an underlying function like httr.

Details

 wnba_commonplayoffseries(league_id = '10', season = most_recent_wnba_season() - 2)

Value

Return a named list of data frames: PlayoffSeries

PlayoffSeries

col_name types description
GAME_ID character Unique game identifier.
HOME_TEAM_ID character Unique identifier for the home team.
VISITOR_TEAM_ID character Unique identifier for visitor team.
SERIES_ID character
GAME_NUM character

Author(s)

Saiem Gilani


Get WNBA Stats API Team Roster

Description

Get WNBA Stats API Team Roster

Get WNBA Stats API Team Roster

Usage

wnba_commonteamroster(
  league_id = "10",
  season = most_recent_wnba_season() - 1,
  team_id = "1611661317",
  ...
)

Arguments

league_id

league_id

season

season

team_id

team_id

...

Additional arguments passed to an underlying function like httr.

Details

  wnba_commonteamroster(season = most_recent_wnba_season() - 1, team_id = '1611661317')

Value

Return a named list of data frames: Coaches, CommonTeamRoster

CommonTeamRoster

col_name types description
TeamID character
SEASON character Season identifier (4-digit year or 'YYYY-YY' string).
LeagueID character
PLAYER character
NICKNAME character Team or athlete nickname.
PLAYER_SLUG character URL-safe player identifier.
NUM character
POSITION character Listed roster position (G, F, C, etc.).
HEIGHT character Player height (string e.g. '6-2' or inches).
WEIGHT character Player weight in pounds.
BIRTH_DATE character Date of birth (YYYY-MM-DD).
AGE character Player age (in years).
EXP character
SCHOOL character Player's school / college (when distinct from 'college').
PLAYER_ID character Unique player identifier.
HOW_ACQUIRED character

Coaches

col_name types description
TEAM_ID character Unique team identifier.
SEASON character Season identifier (4-digit year or 'YYYY-YY' string).
COACH_ID character Unique identifier for coach.
FIRST_NAME character Player's first name.
LAST_NAME character Player's last name.
COACH_NAME character
IS_ASSISTANT character
COACH_TYPE character
SORT_SEQUENCE character
SUB_SORT_SEQUENCE character

Author(s)

Saiem Gilani

See Also

Other WNBA Roster Functions: wnba_commonallplayers(), wnba_commonplayerinfo()


Get WNBA Stats API Cumulative Player Stats

Description

Get WNBA Stats API Cumulative Player Stats

Get WNBA Stats API Cumulative Player Stats

Usage

wnba_cumestatsplayer(
  game_ids = "1022200018",
  league_id = "10",
  player_id = "204319",
  season = "2021-22",
  season_type = "Regular Season",
  team_id = "",
  ...
)

Arguments

game_ids

game_ids

league_id

league_id

player_id

player_id

season

season

season_type

season_type

team_id

team_id

...

Additional arguments passed to an underlying function like httr.

Details

  wnba_cumestatsplayer(game_ids = "1022200018", player_id = "204319", season = "2021-22")

Value

Return a named list of data frames: GameByGameStats, TotalPlayerStats

GameByGameStats

col_name types description
DATE_EST character
VISITOR_TEAM character
HOME_TEAM character
GP character Games played.
GS character Games started.
ACTUAL_MINUTES character
ACTUAL_SECONDS character
FG character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3 character
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FT character
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OFF_REB character
DEF_REB character
TOT_REB character
AVG_TOT_REB character
AST character Assists.
PF character Personal fouls.
DQ character
STL character Steals.
TURNOVERS character Total turnovers.
BLK character Blocks.
PTS character Points scored.
AVG_PTS character

TotalPlayerStats

col_name types description
DISPLAY_FI_LAST character
PERSON_ID character Unique player identifier (V3 endpoints).
JERSEY_NUM character Jersey number worn by the player.
GP character Games played.
GS character Games started.
ACTUAL_MINUTES character
ACTUAL_SECONDS character
FG character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3 character
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FT character
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OFF_REB character
DEF_REB character
TOT_REB character
AST character Assists.
PF character Personal fouls.
DQ character
STL character Steals.
TURNOVERS character Total turnovers.
BLK character Blocks.
PTS character Points scored.
MAX_ACTUAL_MINUTES character
MAX_ACTUAL_SECONDS character
MAX_REB character
MAX_AST character
MAX_STL character
MAX_TURNOVERS character
MAX_BLK character
MAX_PTS character
AVG_ACTUAL_MINUTES character
AVG_ACTUAL_SECONDS character
AVG_TOT_REB character
AVG_AST character
AVG_STL character
AVG_TURNOVERS character The average turnovers committed per game.
AVG_BLK character
AVG_PTS character
PER_MIN_TOT_REB character
PER_MIN_AST character
PER_MIN_STL character
PER_MIN_TURNOVERS character
PER_MIN_BLK character
PER_MIN_PTS character

Author(s)

Saiem Gilani

See Also

Other WNBA Cume Functions: wnba_cumestatsplayergames(), wnba_cumestatsteam(), wnba_cumestatsteamgames()


Get WNBA Stats API Cumulative Player Game Stats

Description

Get WNBA Stats API Cumulative Player Game Stats

Get WNBA Stats API Cumulative Player Game Stats

Usage

wnba_cumestatsplayergames(
  league_id = "10",
  location = "",
  outcome = "",
  player_id = "204319",
  season = "2021-22",
  season_type = "Regular Season",
  vs_conference = "",
  vs_division = "",
  vs_team_id = "",
  ...
)

Arguments

league_id

league_id

location

location

outcome

outcome

player_id

player_id

season

season

season_type

season_type

vs_conference

vs_conference

vs_division

vs_division

vs_team_id

vs_team_id

...

Additional arguments passed to an underlying function like httr.

Details

  wnba_cumestatsplayergames(player_id = "204319", season = "2021-22")

Value

Returns a named list of data frames: CumeStatsPlayerGames

CumeStatsPlayerGames

col_name types description
MATCHUP character Matchup.
GAME_ID character Unique game identifier.

Author(s)

Saiem Gilani

See Also

Other WNBA Cume Functions: wnba_cumestatsplayer(), wnba_cumestatsteam(), wnba_cumestatsteamgames()


Get WNBA Stats API Cumulative Team Stats

Description

Get WNBA Stats API Cumulative Team Stats

Get WNBA Stats API Cumulative Team Stats

Usage

wnba_cumestatsteam(
  game_ids = "1022200018",
  league_id = "10",
  season = "2021-22",
  season_type = "Regular Season",
  team_id = "1611661317",
  ...
)

Arguments

game_ids

game_ids

league_id

league_id

season

season

season_type

season_type

team_id

team_id

...

Additional arguments passed to an underlying function like httr.

Details

  wnba_cumestatsteam(game_ids = "1022200018", season = "2021-22", team_id = "1611661317")

Value

Returns a named list of data frames: GameByGameStats, TotalTeamStats

GameByGameStats

col_name types description
JERSEY_NUM character Jersey number worn by the player.
PLAYER character
PERSON_ID character Unique player identifier (V3 endpoints).
TEAM_ID character Unique team identifier.
GP character Games played.
GS character Games started.
ACTUAL_MINUTES character
ACTUAL_SECONDS character
FG character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3 character
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FT character
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OFF_REB character
DEF_REB character
TOT_REB character
AST character Assists.
PF character Personal fouls.
DQ character
STL character Steals.
TURNOVERS character Total turnovers.
BLK character Blocks.
PTS character Points scored.
MAX_ACTUAL_MINUTES character
MAX_ACTUAL_SECONDS character
MAX_REB character
MAX_AST character
MAX_STL character
MAX_TURNOVERS character
MAX_BLKP character
MAX_PTS character
AVG_ACTUAL_MINUTES character
AVG_ACTUAL_SECONDS character
AVG_REB character
AVG_AST character
AVG_STL character
AVG_TURNOVERS character The average turnovers committed per game.
AVG_BLKP character
AVG_PTS character
PER_MIN_REB character
PER_MIN_AST character
PER_MIN_STL character
PER_MIN_TURNOVERS character
PER_MIN_BLK character
PER_MIN_PTS character

TotalTeamStats

col_name types description
CITY character City.
NICKNAME character Team or athlete nickname.
TEAM_ID character Unique team identifier.
W character Wins.
L character Losses.
W_HOME character
L_HOME character
W_ROAD character
L_ROAD character
TEAM_TURNOVERS character Team turnovers (turnovers credited to the team rather than a player).
TEAM_REBOUNDS character Team rebounds (rebounds credited to the team rather than a player).
GP character Games played.
GS character Games started.
ACTUAL_MINUTES character
ACTUAL_SECONDS character
FG character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3 character
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FT character
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OFF_REB character
DEF_REB character
TOT_REB character
AST character Assists.
PF character Personal fouls.
STL character Steals.
TOTAL_TURNOVERS character Total turnovers (player + team).
BLK character Blocks.
PTS character Points scored.
AVG_REB character
AVG_PTS character
DQ character

Author(s)

Saiem Gilani

See Also

Other WNBA Cume Functions: wnba_cumestatsplayer(), wnba_cumestatsplayergames(), wnba_cumestatsteamgames()


Get WNBA Stats API Cumulative Team Game Stats

Description

Get WNBA Stats API Cumulative Team Game Stats

Get WNBA Stats API Cumulative Team Game Stats

Usage

wnba_cumestatsteamgames(
  league_id = "10",
  location = "",
  outcome = "",
  season = "2021-22",
  season_id = "",
  season_type = "Regular Season",
  team_id = 1611661317,
  vs_conference = "",
  vs_division = "",
  vs_team_id = "",
  ...
)

Arguments

league_id

league_id

location

location

outcome

outcome

season

season

season_id

season_id

season_type

season_type

team_id

team_id

vs_conference

vs_conference

vs_division

vs_division

vs_team_id

vs_team_id

...

Additional arguments passed to an underlying function like httr.

Details

  wnba_cumestatsteamgames(team_id = 1611661317, season = "2021-22")
``

Value

Returns a named list of data frames: CumeStatsTeamGames

CumeStatsTeamGames

col_name types description
MATCHUP character Matchup.
GAME_ID character Unique game identifier.

Author(s)

Saiem Gilani

See Also

Other WNBA Cume Functions: wnba_cumestatsplayer(), wnba_cumestatsplayergames(), wnba_cumestatsteam()


Get WNBA Data API Play-by-Play

Description

Get WNBA Data API Play-by-Play

Get WNBA Data API Play-by-Play

Usage

wnba_data_pbp(game_id = "1022200034", ...)

Arguments

game_id

Game ID - 10 digits, i.e. "0021900001"

...

Additional arguments passed to an underlying function like httr.

Details

  wnba_data_pbp(game_id = "1022200034")

Value

Returns a tibble

col_name types description
game_id character Unique game identifier.
league character League.
period integer Period of the game (1-4 quarters; 5+ for OT).
event_num integer Sequential event number within the game (V2 PBP).
clock character Game clock value.
description character Long-form description text.
locX integer
locY integer
opt1 integer Opt1.
opt2 integer Opt2.
event_action_type integer Numeric event-action-type code (V2 PBP).
event_type integer Event / play type code (V2 PBP).
team_id integer Unique team identifier.
offense_team_id integer Unique identifier for offense team.
player1_id integer V2 PBP primary player ID (e.g. shooter / fouler).
player2_id integer V2 PBP secondary player ID (e.g. assister / fouled-by).
player3_id integer V2 PBP tertiary player ID (e.g. blocker).
home_score integer Home team score at the time of the play.
away_score integer Away team score at the time of the play.
order integer Display order within the result set.

Event Message Types (event_type):

1 -> MAKE

2 -> MISS

3 -> FreeThrow

4 -> Rebound

5 -> Turnover

6 -> Foul

7 -> Violation

8 -> Substitution

9 -> Timeout

10 -> JumpBall

11 -> Ejection

12 -> StartOfPeriod

13 -> EndOfPeriod

14 -> Empty

Author(s)

Saiem Gilani

See Also

Other WNBA PBP Functions: wnba_live_pbp(), wnba_pbp(), wnba_pbps(), wnba_playbyplayv3()


Get WNBA Stats API Draft Board

Description

Get WNBA Stats API Draft Board

Get WNBA Stats API Draft Board

Usage

wnba_draftboard(season = most_recent_wnba_season(), ...)

Arguments

season

Draft year as numeric or character (e.g. 2026).

...

Additional arguments passed to an underlying function like httr.

Details

  wnba_draftboard(season = most_recent_wnba_season())

Value

Returns a named list of tibbles: board, picks.

board

col_name types description
draft_id integer Unique identifier for draft.
title character Title or label for the record.
season integer Season identifier (4-digit year or 'YYYY-YY' string).
status character Status label.
on_the_clock character On the clock.
draft_date character Date in YYYY-MM-DD format.
modified character Modified.

picks

col_name types description
round integer Tournament / playoff round.
pick integer Pick.
team_id integer Unique team identifier.
team_external_id integer Unique identifier for team external.
team_name character Full team display name (e.g. 'Las Vegas Aces').
prospect_id integer Unique identifier for prospect.
first_name character Player's first name.
last_name character Player's last name.
position character Listed roster position (G, F, C, etc.).
country character Country (full name or code).
college character College or school attended.
ppg character Points per game.
rpg character Rebounds per game.
apg character Assists per game.
spg character Steals per game.
bpg character Blocks per game.
fg_pct character Field goal percentage (0-1).
description character Long-form description text.
headshot_url character URL for headshot.

Author(s)

Saiem Gilani

See Also

Other WNBA Draft Functions: wnba_draftcombinedrillresults(), wnba_draftcombinenonstationaryshooting(), wnba_draftcombineplayeranthro(), wnba_draftcombinespotshooting(), wnba_draftcombinestats(), wnba_drafthistory()


Get WNBA Stats API Draft Combine Drill Results

Description

Get WNBA Stats API Draft Combine Drill Results

Get WNBA Stats API Draft Combine Drill Results

Usage

wnba_draftcombinedrillresults(
  league_id = "10",
  season_year = most_recent_wnba_season() - 1,
  ...
)

Arguments

league_id

league_id

season_year

season_year

...

Additional arguments passed to an underlying function like httr.

Details

(Possibly Defunct)

  wnba_draftcombinedrillresults(season_year = most_recent_wnba_season() - 2)

Value

Returns a named list of data frames: Results

Author(s)

Saiem Gilani

See Also

Other WNBA Draft Functions: wnba_draftboard(), wnba_draftcombinenonstationaryshooting(), wnba_draftcombineplayeranthro(), wnba_draftcombinespotshooting(), wnba_draftcombinestats(), wnba_drafthistory()


Get WNBA Stats API Draft Combine Non-Stationary Shooting

Description

Get WNBA Stats API Draft Combine Non-Stationary Shooting

Get WNBA Stats API Draft Combine Non-Stationary Shooting

Usage

wnba_draftcombinenonstationaryshooting(
  league_id = "10",
  season_year = most_recent_wnba_season() - 1,
  ...
)

Arguments

league_id

league_id

season_year

season_year

...

Additional arguments passed to an underlying function like httr.

Details

(Possibly Defunct)

  wnba_draftcombinenonstationaryshooting(season_year = most_recent_wnba_season() - 2)

Value

Returns a named list of data frames: Results

Author(s)

Saiem Gilani

See Also

Other WNBA Draft Functions: wnba_draftboard(), wnba_draftcombinedrillresults(), wnba_draftcombineplayeranthro(), wnba_draftcombinespotshooting(), wnba_draftcombinestats(), wnba_drafthistory()


Get WNBA Stats API Draft Combine Player Anthropological Measurements

Description

Get WNBA Stats API Draft Combine Player Anthropological Measurements

Get WNBA Stats API Draft Combine Player Anthropological Measurements

Usage

wnba_draftcombineplayeranthro(
  league_id = "10",
  season_year = most_recent_wnba_season() - 1,
  ...
)

Arguments

league_id

league_id

season_year

season_year

...

Additional arguments passed to an underlying function like httr.

Details

(Possibly Defunct)

  wnba_draftcombineplayeranthro(season_year = most_recent_wnba_season() - 2)

Value

Returns a named list of data frames: Results

Author(s)

Saiem Gilani

See Also

Other WNBA Draft Functions: wnba_draftboard(), wnba_draftcombinedrillresults(), wnba_draftcombinenonstationaryshooting(), wnba_draftcombinespotshooting(), wnba_draftcombinestats(), wnba_drafthistory()


Get WNBA Stats API Draft Combine - Spot Shooting

Description

Get WNBA Stats API Draft Combine - Spot Shooting

Get WNBA Stats API Draft Combine - Spot Shooting

Usage

wnba_draftcombinespotshooting(
  league_id = "10",
  season_year = most_recent_wnba_season() - 1,
  ...
)

Arguments

league_id

league_id

season_year

season_year

...

Additional arguments passed to an underlying function like httr.

Details

(Possibly Defunct)

  wnba_draftcombinespotshooting(season_year = most_recent_wnba_season() - 2)

Value

Returns a named list of data frames: Results

Author(s)

Saiem Gilani

See Also

Other WNBA Draft Functions: wnba_draftboard(), wnba_draftcombinedrillresults(), wnba_draftcombinenonstationaryshooting(), wnba_draftcombineplayeranthro(), wnba_draftcombinestats(), wnba_drafthistory()


Get WNBA Stats API Draft Combine Stats

Description

Get WNBA Stats API Draft Combine Stats

Get WNBA Stats API Draft Combine Stats

Usage

wnba_draftcombinestats(
  league_id = "10",
  season_year = most_recent_wnba_season() - 1,
  ...
)

Arguments

league_id

league_id

season_year

season_year

...

Additional arguments passed to an underlying function like httr.

Details

  wnba_draftcombinestats(season_year = most_recent_wnba_season() - 1)

Value

Returns a named list of data frames: DraftCombineStats

DraftCombineStats

col_name types description
SEASON character Season identifier (4-digit year or 'YYYY-YY' string).
PLAYER_ID character Unique player identifier.
FIRST_NAME character Player's first name.
LAST_NAME character Player's last name.
PLAYER_NAME character Player name.
POSITION character Listed roster position (G, F, C, etc.).
HEIGHT_WO_SHOES character
HEIGHT_WO_SHOES_FT_IN character
HEIGHT_W_SHOES character
HEIGHT_W_SHOES_FT_IN character
WEIGHT character Player weight in pounds.
WINGSPAN character
WINGSPAN_FT_IN character
STANDING_REACH character
STANDING_REACH_FT_IN character
BODY_FAT_PCT character
HAND_LENGTH character
HAND_WIDTH character
STANDING_VERTICAL_LEAP character
MAX_VERTICAL_LEAP character
LANE_AGILITY_TIME character
MODIFIED_LANE_AGILITY_TIME character
THREE_QUARTER_SPRINT character
BENCH_PRESS character
SPOT_FIFTEEN_CORNER_LEFT character
SPOT_FIFTEEN_BREAK_LEFT character
SPOT_FIFTEEN_TOP_KEY character
SPOT_FIFTEEN_BREAK_RIGHT character
SPOT_FIFTEEN_CORNER_RIGHT character
SPOT_COLLEGE_CORNER_LEFT character
SPOT_COLLEGE_BREAK_LEFT character
SPOT_COLLEGE_TOP_KEY character
SPOT_COLLEGE_BREAK_RIGHT character
SPOT_COLLEGE_CORNER_RIGHT character
SPOT_NBA_CORNER_LEFT character
SPOT_NBA_BREAK_LEFT character
SPOT_NBA_TOP_KEY character
SPOT_NBA_BREAK_RIGHT character
SPOT_NBA_CORNER_RIGHT character
OFF_DRIB_FIFTEEN_BREAK_LEFT character
OFF_DRIB_FIFTEEN_TOP_KEY character
OFF_DRIB_FIFTEEN_BREAK_RIGHT character
OFF_DRIB_COLLEGE_BREAK_LEFT character
OFF_DRIB_COLLEGE_TOP_KEY character
OFF_DRIB_COLLEGE_BREAK_RIGHT character
ON_MOVE_FIFTEEN character
ON_MOVE_COLLEGE character

Author(s)

Saiem Gilani

See Also

Other WNBA Draft Functions: wnba_draftboard(), wnba_draftcombinedrillresults(), wnba_draftcombinenonstationaryshooting(), wnba_draftcombineplayeranthro(), wnba_draftcombinespotshooting(), wnba_drafthistory()


Get WNBA Stats API Draft History

Description

Get WNBA Stats API Draft History

Usage

wnba_drafthistory(
  league_id = "10",
  college = "",
  overall_pick = "",
  round_pick = "",
  round_num = "",
  season = most_recent_wnba_season() - 1,
  team_id = "",
  top_x = "",
  ...
)

Arguments

league_id

league_id

college

college

overall_pick

overall_pick

round_pick

round_pick

round_num

round_num

season

season

team_id

team_id

top_x

top_x

...

Additional arguments passed to an underlying function like httr.

Details

 wnba_drafthistory(season = most_recent_wnba_season() - 1)

Value

Returns a named list of data frames: DraftHistory

DraftHistory

col_name types description
PERSON_ID character Unique player identifier (V3 endpoints).
PLAYER_NAME character Player name.
SEASON character Season identifier (4-digit year or 'YYYY-YY' string).
ROUND_NUMBER character Numeric round.
ROUND_PICK character Round pick.
OVERALL_PICK character Overall pick.
DRAFT_TYPE character
TEAM_ID character Unique team identifier.
TEAM_CITY character Team city or region (e.g. 'Las Vegas').
TEAM_NAME character Full team display name (e.g. 'Las Vegas Aces').
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
ORGANIZATION character Organization.
ORGANIZATION_TYPE character Organization type.
PLAYER_PROFILE_FLAG character Player profile flag.

Author(s)

Saiem Gilani

See Also

Other WNBA Draft Functions: wnba_draftboard(), wnba_draftcombinedrillresults(), wnba_draftcombinenonstationaryshooting(), wnba_draftcombineplayeranthro(), wnba_draftcombinespotshooting(), wnba_draftcombinestats()


Get WNBA Stats API Fantasy Widget

Description

Get WNBA Stats API Fantasy Widget

Get WNBA Stats API Fantasy Widget

Usage

wnba_fantasywidget(
  active_players = "N",
  date_from = "",
  date_to = "",
  last_n_games = 0,
  league_id = "10",
  location = "",
  month = "",
  opponent_team_id = "",
  po_round = "",
  player_id = "",
  position = "",
  season = most_recent_wnba_season() - 1,
  season_segment = "",
  season_type = "Regular Season",
  team_id = "",
  todays_opponent = 0,
  todays_players = "N",
  vs_conference = "",
  vs_division = "",
  ...
)

Arguments

active_players

active_players

date_from

date_from date_from

date_to

date_to date_to

last_n_games

last_n_games

league_id

league_id

location

location

month

month

opponent_team_id

opponent_team_id

po_round

po_round

player_id

player_id

position

position

season

season

season_segment

season_segment

season_type

season_type

team_id

team_id

todays_opponent

todays_opponent

todays_players

todays_players

vs_conference

vs_conference

vs_division

vs_division

...

Additional arguments passed to an underlying function like httr.

Details

 wnba_fantasywidget(league_id = '10', season = most_recent_wnba_season() - 1)

Value

Returns a named list of data frames: FantasyWidgetResult

FantasyWidgetResult

col_name types description
PLAYER_ID character Unique player identifier.
PLAYER_NAME character Player name.
PLAYER_POSITION character
TEAM_ID character Unique team identifier.
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
GP character Games played.
MIN character Minutes played.
FAN_DUEL_PTS character
NBA_FANTASY_PTS character
PTS character Points scored.
REB character Total rebounds.
AST character Assists.
BLK character Blocks.
STL character Steals.
TOV character Turnovers.
FG3M character Three-point field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).

Author(s)

Saiem Gilani

See Also

Other WNBA Fantasy Functions: wnba_infographicfanduelplayer(), wnba_playerfantasyprofile(), wnba_playerfantasyprofilebargraph()


Get WNBA Stats API Franchise History

Description

Get WNBA Stats API Franchise History

Get WNBA Stats API Franchise History

Usage

wnba_franchisehistory(league_id = "10", ...)

Arguments

league_id

league_id

...

Additional arguments passed to an underlying function like httr.

Details

Franchise History

  wnba_franchisehistory(league_id = '10')

Value

Returns a named list of data frames: DefunctTeams, FranchiseHistory

FranchiseHistory

col_name types description
LEAGUE_ID character League identifier ('10' = WNBA).
TEAM_ID character Unique team identifier.
TEAM_CITY character Team city or region (e.g. 'Las Vegas').
TEAM_NAME character Full team display name (e.g. 'Las Vegas Aces').
START_YEAR character
END_YEAR character
YEARS character Years.
GAMES character
WINS character Total wins.
LOSSES character Total losses.
WIN_PCT character Win percentage (0-1 decimal).
PO_APPEARANCES character
DIV_TITLES character
CONF_TITLES character
LEAGUE_TITLES character

DefunctTeams

col_name types description
LEAGUE_ID character League identifier ('10' = WNBA).
TEAM_ID character Unique team identifier.
TEAM_CITY character Team city or region (e.g. 'Las Vegas').
TEAM_NAME character Full team display name (e.g. 'Las Vegas Aces').
START_YEAR character
END_YEAR character
YEARS character Years.
GAMES character
WINS character Total wins.
LOSSES character Total losses.
WIN_PCT character Win percentage (0-1 decimal).
PO_APPEARANCES character
DIV_TITLES character
CONF_TITLES character
LEAGUE_TITLES character

Author(s)

Saiem Gilani

See Also

Other WNBA Franchise Functions: wnba_franchiseleaders(), wnba_franchiseleaderswrank(), wnba_franchiseplayers()


Get WNBA Stats API Franchise Leaders

Description

Get WNBA Stats API Franchise Leaders

Get WNBA Stats API Franchise Leaders

Usage

wnba_franchiseleaders(league_id = "10", team_id = "1611661324", ...)

Arguments

league_id

league_id

team_id

team_id

...

Additional arguments passed to an underlying function like httr.

Details

Franchise Leaders

  wnba_franchiseleaders(league_id = '10', team_id = '1611661324')

Value

Returns a named list of data frames: FranchiseLeaders

FranchiseLeaders

col_name types description
TEAM_ID character Unique team identifier.
PTS character Points scored.
PTS_PERSON_ID character
PTS_PLAYER character
AST character Assists.
AST_PERSON_ID character
AST_PLAYER character
REB character Total rebounds.
REB_PERSON_ID character
REB_PLAYER character
BLK character Blocks.
BLK_PERSON_ID character
BLK_PLAYER character
STL character Steals.
STL_PERSON_ID character
STL_PLAYER character

Author(s)

Saiem Gilani

See Also

Other WNBA Franchise Functions: wnba_franchisehistory(), wnba_franchiseleaderswrank(), wnba_franchiseplayers()


Get WNBA Stats API Franchise Leaders with Rank

Description

Get WNBA Stats API Franchise Leaders with Rank

Get WNBA Stats API Franchise Leaders with Rank

Usage

wnba_franchiseleaderswrank(
  league_id = "10",
  per_mode = "Totals",
  season_type = "Regular Season",
  team_id = "1611661324",
  ...
)

Arguments

league_id

league_id

per_mode

per_mode

season_type

season_type

team_id

team_id

...

Additional arguments passed to an underlying function like httr.

Details

Franchise Leaders

 wnba_franchiseleaderswrank(league_id = '10', team_id = '1611661324')

Value

Returns a named list of data frames: FranchiseLeaderswRank

FranchiseLeaderswRank

col_name types description
LEAGUE_ID character League identifier ('10' = WNBA).
TEAM_ID character Unique team identifier.
TEAM character Team-side label or team identifier.
PERSON_ID character Unique player identifier (V3 endpoints).
PLAYER character
SEASON_TYPE character Season type (1=pre-season, 2=regular season, 3=postseason, 4=off-season for ESPN; or string label for WNBA Stats).
ACTIVE_WITH_TEAM character
GP character Games played.
MINUTES character Minutes played, formatted MM:SS (V3 PT-duration parsed) or decimal minutes (V2).
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
PF character Personal fouls.
STL character Steals.
TOV character Turnovers.
BLK character Blocks.
PTS character Points scored.
F_RANK_GP character
F_RANK_MINUTES character
F_RANK_FGM character
F_RANK_FGA character
F_RANK_FG_PCT character
F_RANK_FG3M character
F_RANK_FG3A character
F_RANK_FG3_PCT character
F_RANK_FTM character
F_RANK_FTA character
F_RANK_FT_PCT character
F_RANK_OREB character
F_RANK_DREB character
F_RANK_REB character
F_RANK_AST character
F_RANK_PF character
F_RANK_STL character
F_RANK_TOV character
F_RANK_BLK character
F_RANK_PTS character

Author(s)

Saiem Gilani

See Also

Other WNBA Franchise Functions: wnba_franchisehistory(), wnba_franchiseleaders(), wnba_franchiseplayers()


Get WNBA Stats API Franchise Players

Description

Get WNBA Stats API Franchise Players

Get WNBA Stats API Franchise Players

Usage

wnba_franchiseplayers(
  league_id = "10",
  per_mode = "Totals",
  season_type = "Regular Season",
  team_id = "1611661319",
  ...
)

Arguments

league_id

league_id

per_mode

per_mode

season_type

season_type

team_id

team_id

...

Additional arguments passed to an underlying function like httr.

Details

Franchise Players

 wnba_franchiseplayers(league_id = '10', team_id = '1611661319')
 wnba_franchiseplayers(league_id = '10', season_type = 'Playoffs', team_id = '1611661319')

Value

Returns a named list of data frames: FranchisePlayers

FranchisePlayers

col_name types description
LEAGUE_ID character League identifier ('10' = WNBA).
TEAM_ID character Unique team identifier.
TEAM character Team-side label or team identifier.
PERSON_ID character Unique player identifier (V3 endpoints).
PLAYER character
SEASON_TYPE character Season type (1=pre-season, 2=regular season, 3=postseason, 4=off-season for ESPN; or string label for WNBA Stats).
ACTIVE_WITH_TEAM character
GP character Games played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
PF character Personal fouls.
STL character Steals.
TOV character Turnovers.
BLK character Blocks.
PTS character Points scored.

Author(s)

Saiem Gilani

See Also

Other WNBA Franchise Functions: wnba_franchisehistory(), wnba_franchiseleaders(), wnba_franchiseleaderswrank()


Get WNBA Stats API Game Rotation

Description

Get WNBA Stats API Game Rotation

Get WNBA Stats API Game Rotation

Usage

wnba_gamerotation(game_id, league_id = "10", rotation_stat = "PLAYER_PTS", ...)

Arguments

game_id

Game ID

league_id

League ID

rotation_stat

Rotation stat to provide details on: PLAYER_PTS, PT_DIFF, USG_PCT

...

Additional arguments passed to an underlying function like httr.

Details

  wnba_gamerotation(game_id = "1022200034")

Value

Returns a named list of data frames: AwayTeam, HomeTeam

AwayTeam

col_name types description
GAME_ID character Unique game identifier.
TEAM_ID character Unique team identifier.
TEAM_CITY character Team city or region (e.g. 'Las Vegas').
TEAM_NAME character Full team display name (e.g. 'Las Vegas Aces').
PERSON_ID character Unique player identifier (V3 endpoints).
PLAYER_FIRST character
PLAYER_LAST character
IN_TIME_REAL character
OUT_TIME_REAL character
PLAYER_PTS character
PT_DIFF character
USG_PCT character Usage percentage (0-1).

HomeTeam

col_name types description
GAME_ID character Unique game identifier.
TEAM_ID character Unique team identifier.
TEAM_CITY character Team city or region (e.g. 'Las Vegas').
TEAM_NAME character Full team display name (e.g. 'Las Vegas Aces').
PERSON_ID character Unique player identifier (V3 endpoints).
PLAYER_FIRST character
PLAYER_LAST character
IN_TIME_REAL character
OUT_TIME_REAL character
PLAYER_PTS character
PT_DIFF character
USG_PCT character Usage percentage (0-1).

Author(s)

Saiem Gilani

See Also

Other WNBA Boxscore Functions: wnba_boxscoreadvancedv2(), wnba_boxscorefourfactorsv2(), wnba_boxscoremiscv2(), wnba_boxscoreplayertrackv2(), wnba_boxscorescoringv2(), wnba_boxscoresummaryv2(), wnba_boxscoretraditionalv2(), wnba_boxscoreusagev2(), wnba_hustlestatsboxscore()

Other WNBA Lineup Functions: wnba_leaguedashlineups(), wnba_leaguelineupviz(), wnba_shotchartlineupdetail(), wnba_teamdashlineups()


Get WNBA Stats API Homepage Widget Leaders

Description

Get WNBA Stats API Homepage Widget Leaders

Get WNBA Stats API Homepage Widget Leaders

Usage

wnba_homepagewidget(player_or_team = "Player", ...)

Arguments

player_or_team

Player or Team

...

Additional arguments passed to an underlying function like httr.

Details

 wnba_homepagewidget(player_or_team = "Player")
 wnba_homepagewidget(player_or_team = "Team")

Value

Returns, for current season, a named list of data frames: PTS, REB, AST, BLK, STL, FG_PCT, FG3M, FG3_PCT, FANTASY_POINTS, TOTAL_PTS, TOTAL_REB, TOTAL_AST, ALL_TIME_TD3, TD3, GAME_FG3M, GAME_PTS, GAME_AST, GAME_STL, GAME_BLK, PCT_PTS_3PT, PCT_PTS_2PT, PCT_PTS_2PT_MR

PTS

col_name types description
title character Title or label for the record.
deep_link character Deep link URL into wnba.com / espn.com.
name character Display name.
timestamp character ISO 8601 UTC timestamp.
season character Season identifier (4-digit year or 'YYYY-YY' string).
seasontype character Season type ('Regular Season', 'Playoffs', 'Pre Season', 'All Star').
permode character Per-mode aggregation ('Totals', 'PerGame', 'Per40', 'Per100Possessions', etc.).
RANK integer Whether to include statistical ranks in the returned table.
PLAYER_ID integer Unique player identifier.
PLAYER_NAME character Player name.
TEAM_ID integer Unique team identifier.
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
PTS numeric Points scored.
FIRST_NAME character Player's first name.
NICKNAME character Team or athlete nickname.
LAST_NAME character Player's last name.
JERSEY_NUM character Jersey number worn by the player.
POSITION character Listed roster position (G, F, C, etc.).

REB

col_name types description
title character Title or label for the record.
deep_link character Deep link URL into wnba.com / espn.com.
name character Display name.
timestamp character ISO 8601 UTC timestamp.
season character Season identifier (4-digit year or 'YYYY-YY' string).
seasontype character Season type ('Regular Season', 'Playoffs', 'Pre Season', 'All Star').
permode character Per-mode aggregation ('Totals', 'PerGame', 'Per40', 'Per100Possessions', etc.).
RANK integer Whether to include statistical ranks in the returned table.
PLAYER_ID integer Unique player identifier.
PLAYER_NAME character Player name.
TEAM_ID integer Unique team identifier.
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
REB numeric Total rebounds.
FIRST_NAME character Player's first name.
NICKNAME character Team or athlete nickname.
LAST_NAME character Player's last name.
JERSEY_NUM character Jersey number worn by the player.
POSITION character Listed roster position (G, F, C, etc.).

AST

col_name types description
title character Title or label for the record.
deep_link character Deep link URL into wnba.com / espn.com.
name character Display name.
timestamp character ISO 8601 UTC timestamp.
season character Season identifier (4-digit year or 'YYYY-YY' string).
seasontype character Season type ('Regular Season', 'Playoffs', 'Pre Season', 'All Star').
permode character Per-mode aggregation ('Totals', 'PerGame', 'Per40', 'Per100Possessions', etc.).
RANK integer Whether to include statistical ranks in the returned table.
PLAYER_ID integer Unique player identifier.
PLAYER_NAME character Player name.
TEAM_ID integer Unique team identifier.
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
AST numeric Assists.
FIRST_NAME character Player's first name.
NICKNAME character Team or athlete nickname.
LAST_NAME character Player's last name.
JERSEY_NUM character Jersey number worn by the player.
POSITION character Listed roster position (G, F, C, etc.).

BLK

col_name types description
title character Title or label for the record.
deep_link character Deep link URL into wnba.com / espn.com.
name character Display name.
timestamp character ISO 8601 UTC timestamp.
season character Season identifier (4-digit year or 'YYYY-YY' string).
seasontype character Season type ('Regular Season', 'Playoffs', 'Pre Season', 'All Star').
permode character Per-mode aggregation ('Totals', 'PerGame', 'Per40', 'Per100Possessions', etc.).
RANK integer Whether to include statistical ranks in the returned table.
PLAYER_ID integer Unique player identifier.
PLAYER_NAME character Player name.
TEAM_ID integer Unique team identifier.
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
BLK numeric Blocks.
FIRST_NAME character Player's first name.
NICKNAME character Team or athlete nickname.
LAST_NAME character Player's last name.
JERSEY_NUM character Jersey number worn by the player.
POSITION character Listed roster position (G, F, C, etc.).

STL

col_name types description
title character Title or label for the record.
deep_link character Deep link URL into wnba.com / espn.com.
name character Display name.
timestamp character ISO 8601 UTC timestamp.
season character Season identifier (4-digit year or 'YYYY-YY' string).
seasontype character Season type ('Regular Season', 'Playoffs', 'Pre Season', 'All Star').
permode character Per-mode aggregation ('Totals', 'PerGame', 'Per40', 'Per100Possessions', etc.).
RANK integer Whether to include statistical ranks in the returned table.
PLAYER_ID integer Unique player identifier.
PLAYER_NAME character Player name.
TEAM_ID integer Unique team identifier.
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
STL numeric Steals.
FIRST_NAME character Player's first name.
NICKNAME character Team or athlete nickname.
LAST_NAME character Player's last name.
JERSEY_NUM character Jersey number worn by the player.
POSITION character Listed roster position (G, F, C, etc.).

FG_PCT

col_name types description
title character Title or label for the record.
deep_link character Deep link URL into wnba.com / espn.com.
name character Display name.
timestamp character ISO 8601 UTC timestamp.
season character Season identifier (4-digit year or 'YYYY-YY' string).
seasontype character Season type ('Regular Season', 'Playoffs', 'Pre Season', 'All Star').
permode character Per-mode aggregation ('Totals', 'PerGame', 'Per40', 'Per100Possessions', etc.).
RANK integer Whether to include statistical ranks in the returned table.
PLAYER_ID integer Unique player identifier.
PLAYER_NAME character Player name.
TEAM_ID integer Unique team identifier.
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
FG_PCT numeric Field goal percentage (0-1).
FIRST_NAME character Player's first name.
NICKNAME character Team or athlete nickname.
LAST_NAME character Player's last name.
JERSEY_NUM character Jersey number worn by the player.
POSITION character Listed roster position (G, F, C, etc.).

FG3M

col_name types description
title character Title or label for the record.
deep_link character Deep link URL into wnba.com / espn.com.
name character Display name.
timestamp character ISO 8601 UTC timestamp.
season character Season identifier (4-digit year or 'YYYY-YY' string).
seasontype character Season type ('Regular Season', 'Playoffs', 'Pre Season', 'All Star').
permode character Per-mode aggregation ('Totals', 'PerGame', 'Per40', 'Per100Possessions', etc.).
RANK integer Whether to include statistical ranks in the returned table.
PLAYER_ID integer Unique player identifier.
PLAYER_NAME character Player name.
TEAM_ID integer Unique team identifier.
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
FG3M integer Three-point field goals made.
FIRST_NAME character Player's first name.
NICKNAME character Team or athlete nickname.
LAST_NAME character Player's last name.
JERSEY_NUM character Jersey number worn by the player.
POSITION character Listed roster position (G, F, C, etc.).

FG3_PCT

col_name types description
title character Title or label for the record.
deep_link character Deep link URL into wnba.com / espn.com.
name character Display name.
timestamp character ISO 8601 UTC timestamp.
season character Season identifier (4-digit year or 'YYYY-YY' string).
seasontype character Season type ('Regular Season', 'Playoffs', 'Pre Season', 'All Star').
permode character Per-mode aggregation ('Totals', 'PerGame', 'Per40', 'Per100Possessions', etc.).
RANK integer Whether to include statistical ranks in the returned table.
PLAYER_ID integer Unique player identifier.
PLAYER_NAME character Player name.
TEAM_ID integer Unique team identifier.
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
FG3_PCT numeric Three-point field goal percentage (0-1).
FIRST_NAME character Player's first name.
NICKNAME character Team or athlete nickname.
LAST_NAME character Player's last name.
JERSEY_NUM character Jersey number worn by the player.
POSITION character Listed roster position (G, F, C, etc.).

FANTASY_POINTS

col_name types description
title character Title or label for the record.
deep_link character Deep link URL into wnba.com / espn.com.
name character Display name.
timestamp character ISO 8601 UTC timestamp.
season character Season identifier (4-digit year or 'YYYY-YY' string).
seasontype character Season type ('Regular Season', 'Playoffs', 'Pre Season', 'All Star').
permode character Per-mode aggregation ('Totals', 'PerGame', 'Per40', 'Per100Possessions', etc.).
PLAYER_ID integer Unique player identifier.
PLAYER_NAME character Player name.
TEAM_ID integer Unique team identifier.
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
FANTASY_POINTS numeric
FIRST_NAME character Player's first name.
NICKNAME character Team or athlete nickname.
LAST_NAME character Player's last name.
JERSEY_NUM character Jersey number worn by the player.
POSITION character Listed roster position (G, F, C, etc.).

TOTAL_PTS

col_name types description
title character Title or label for the record.
deep_link character Deep link URL into wnba.com / espn.com.
name character Display name.
timestamp character ISO 8601 UTC timestamp.
permode character Per-mode aggregation ('Totals', 'PerGame', 'Per40', 'Per100Possessions', etc.).
season character Season identifier (4-digit year or 'YYYY-YY' string).
seasontype character Season type ('Regular Season', 'Playoffs', 'Pre Season', 'All Star').
PLAYER_ID integer Unique player identifier.
PLAYER_NAME character Player name.
PLAYER_NAME_LAST_FIRST character
NICKNAME character Team or athlete nickname.
TEAM_ID integer Unique team identifier.
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
TEAM_NAME character Full team display name (e.g. 'Las Vegas Aces').
PTS integer Points scored.

TOTAL_REB

col_name types description
title character Title or label for the record.
deep_link character Deep link URL into wnba.com / espn.com.
name character Display name.
timestamp character ISO 8601 UTC timestamp.
permode character Per-mode aggregation ('Totals', 'PerGame', 'Per40', 'Per100Possessions', etc.).
season character Season identifier (4-digit year or 'YYYY-YY' string).
seasontype character Season type ('Regular Season', 'Playoffs', 'Pre Season', 'All Star').
PLAYER_ID integer Unique player identifier.
PLAYER_NAME character Player name.
PLAYER_NAME_LAST_FIRST character
NICKNAME character Team or athlete nickname.
TEAM_ID integer Unique team identifier.
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
TEAM_NAME character Full team display name (e.g. 'Las Vegas Aces').
REB integer Total rebounds.

TOTAL_AST

col_name types description
title character Title or label for the record.
deep_link character Deep link URL into wnba.com / espn.com.
name character Display name.
timestamp character ISO 8601 UTC timestamp.
permode character Per-mode aggregation ('Totals', 'PerGame', 'Per40', 'Per100Possessions', etc.).
season character Season identifier (4-digit year or 'YYYY-YY' string).
seasontype character Season type ('Regular Season', 'Playoffs', 'Pre Season', 'All Star').
PLAYER_ID integer Unique player identifier.
PLAYER_NAME character Player name.
PLAYER_NAME_LAST_FIRST character
NICKNAME character Team or athlete nickname.
TEAM_ID integer Unique team identifier.
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
TEAM_NAME character Full team display name (e.g. 'Las Vegas Aces').
AST integer Assists.

ALL_TIME_TD3

col_name types description
title character Title or label for the record.
deep_link character Deep link URL into wnba.com / espn.com.
name character Display name.
timestamp character ISO 8601 UTC timestamp.
permode character Per-mode aggregation ('Totals', 'PerGame', 'Per40', 'Per100Possessions', etc.).
season character Season identifier (4-digit year or 'YYYY-YY' string).
seasontype character Season type ('Regular Season', 'Playoffs', 'Pre Season', 'All Star').
PLAYER_ID integer Unique player identifier.
PLAYER_NAME character Player name.
PLAYER_NAME_LAST_FIRST character
TD3 integer

TD3

col_name types description
title character Title or label for the record.
deep_link character Deep link URL into wnba.com / espn.com.
name character Display name.
timestamp character ISO 8601 UTC timestamp.
permode character Per-mode aggregation ('Totals', 'PerGame', 'Per40', 'Per100Possessions', etc.).
season character Season identifier (4-digit year or 'YYYY-YY' string).
seasontype character Season type ('Regular Season', 'Playoffs', 'Pre Season', 'All Star').
PLAYER_ID integer Unique player identifier.
PLAYER_NAME character Player name.
PLAYER_NAME_LAST_FIRST character
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
SEASON_YEAR character Season year string ('YYYY-YY' format).
TD3 integer

GAME_FG3M

col_name types description
title character Title or label for the record.
deep_link character Deep link URL into wnba.com / espn.com.
name character Display name.
timestamp character ISO 8601 UTC timestamp.
permode character Per-mode aggregation ('Totals', 'PerGame', 'Per40', 'Per100Possessions', etc.).
season character Season identifier (4-digit year or 'YYYY-YY' string).
seasontype character Season type ('Regular Season', 'Playoffs', 'Pre Season', 'All Star').
PLAYER_ID integer Unique player identifier.
PLAYER_NAME character Player name.
PLAYER_NAME_LAST_FIRST character
NICKNAME character Team or athlete nickname.
TEAM_ID integer Unique team identifier.
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
TEAM_NAME character Full team display name (e.g. 'Las Vegas Aces').
FG3M integer Three-point field goals made.
GAME_ID character Unique game identifier.

GAME_PTS

col_name types description
title character Title or label for the record.
deep_link character Deep link URL into wnba.com / espn.com.
name character Display name.
timestamp character ISO 8601 UTC timestamp.
permode character Per-mode aggregation ('Totals', 'PerGame', 'Per40', 'Per100Possessions', etc.).
season character Season identifier (4-digit year or 'YYYY-YY' string).
seasontype character Season type ('Regular Season', 'Playoffs', 'Pre Season', 'All Star').
PLAYER_ID integer Unique player identifier.
PLAYER_NAME character Player name.
PLAYER_NAME_LAST_FIRST character
NICKNAME character Team or athlete nickname.
TEAM_ID integer Unique team identifier.
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
TEAM_NAME character Full team display name (e.g. 'Las Vegas Aces').
PTS integer Points scored.
GAME_ID character Unique game identifier.

GAME_AST

col_name types description
title character Title or label for the record.
deep_link character Deep link URL into wnba.com / espn.com.
name character Display name.
timestamp character ISO 8601 UTC timestamp.
permode character Per-mode aggregation ('Totals', 'PerGame', 'Per40', 'Per100Possessions', etc.).
season character Season identifier (4-digit year or 'YYYY-YY' string).
seasontype character Season type ('Regular Season', 'Playoffs', 'Pre Season', 'All Star').
PLAYER_ID integer Unique player identifier.
PLAYER_NAME character Player name.
PLAYER_NAME_LAST_FIRST character
NICKNAME character Team or athlete nickname.
TEAM_ID integer Unique team identifier.
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
TEAM_NAME character Full team display name (e.g. 'Las Vegas Aces').
AST integer Assists.
GAME_ID character Unique game identifier.

GAME_STL

col_name types description
title character Title or label for the record.
deep_link character Deep link URL into wnba.com / espn.com.
name character Display name.
timestamp character ISO 8601 UTC timestamp.
permode character Per-mode aggregation ('Totals', 'PerGame', 'Per40', 'Per100Possessions', etc.).
season character Season identifier (4-digit year or 'YYYY-YY' string).
seasontype character Season type ('Regular Season', 'Playoffs', 'Pre Season', 'All Star').
PLAYER_ID integer Unique player identifier.
PLAYER_NAME character Player name.
PLAYER_NAME_LAST_FIRST character
NICKNAME character Team or athlete nickname.
TEAM_ID integer Unique team identifier.
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
TEAM_NAME character Full team display name (e.g. 'Las Vegas Aces').
STL integer Steals.
GAME_ID character Unique game identifier.

GAME_BLK

col_name types description
title character Title or label for the record.
deep_link character Deep link URL into wnba.com / espn.com.
name character Display name.
timestamp character ISO 8601 UTC timestamp.
permode character Per-mode aggregation ('Totals', 'PerGame', 'Per40', 'Per100Possessions', etc.).
season character Season identifier (4-digit year or 'YYYY-YY' string).
seasontype character Season type ('Regular Season', 'Playoffs', 'Pre Season', 'All Star').
PLAYER_ID integer Unique player identifier.
PLAYER_NAME character Player name.
PLAYER_NAME_LAST_FIRST character
NICKNAME character Team or athlete nickname.
TEAM_ID integer Unique team identifier.
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
TEAM_NAME character Full team display name (e.g. 'Las Vegas Aces').
BLK integer Blocks.
GAME_ID character Unique game identifier.

PCT_PTS_3PT

col_name types description
title character Title or label for the record.
deep_link character Deep link URL into wnba.com / espn.com.
name character Display name.
timestamp character ISO 8601 UTC timestamp.
permode character Per-mode aggregation ('Totals', 'PerGame', 'Per40', 'Per100Possessions', etc.).
season character Season identifier (4-digit year or 'YYYY-YY' string).
seasontype character Season type ('Regular Season', 'Playoffs', 'Pre Season', 'All Star').
PLAYER_ID integer Unique player identifier.
PLAYER_NAME character Player name.
PLAYER_NAME_LAST_FIRST character
NICKNAME character Team or athlete nickname.
TEAM_ID integer Unique team identifier.
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
TEAM_NAME character Full team display name (e.g. 'Las Vegas Aces').
PCT_PTS_3PT numeric

PCT_PTS_2PT

col_name types description
title character Title or label for the record.
deep_link character Deep link URL into wnba.com / espn.com.
name character Display name.
timestamp character ISO 8601 UTC timestamp.
permode character Per-mode aggregation ('Totals', 'PerGame', 'Per40', 'Per100Possessions', etc.).
season character Season identifier (4-digit year or 'YYYY-YY' string).
seasontype character Season type ('Regular Season', 'Playoffs', 'Pre Season', 'All Star').
PLAYER_ID integer Unique player identifier.
PLAYER_NAME character Player name.
PLAYER_NAME_LAST_FIRST character
NICKNAME character Team or athlete nickname.
TEAM_ID integer Unique team identifier.
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
TEAM_NAME character Full team display name (e.g. 'Las Vegas Aces').
PCT_PTS_2PT numeric

PCT_PTS_2PT_MR

col_name types description
title character Title or label for the record.
deep_link character Deep link URL into wnba.com / espn.com.
name character Display name.
timestamp character ISO 8601 UTC timestamp.
permode character Per-mode aggregation ('Totals', 'PerGame', 'Per40', 'Per100Possessions', etc.).
season character Season identifier (4-digit year or 'YYYY-YY' string).
seasontype character Season type ('Regular Season', 'Playoffs', 'Pre Season', 'All Star').
PLAYER_ID integer Unique player identifier.
PLAYER_NAME character Player name.
PLAYER_NAME_LAST_FIRST character
NICKNAME character Team or athlete nickname.
TEAM_ID integer Unique team identifier.
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
TEAM_NAME character Full team display name (e.g. 'Las Vegas Aces').
PCT_PTS_2PT_MR numeric

Author(s)

Saiem Gilani

See Also

Other WNBA Leaders Functions: wnba_alltimeleadersgrids(), wnba_assistleaders(), wnba_assisttracker(), wnba_leagueleaders()


Get WNBA Stats API FanDuel Player Infographic

Description

Get WNBA Stats API FanDuel Player Infographic

Get WNBA Stats API FanDuel Player Infographic

Usage

wnba_infographicfanduelplayer(game_id, ...)

Arguments

game_id

game_id

...

Additional arguments passed to an underlying function like httr.

Details

 wnba_infographicfanduelplayer(game_id = "1022200034")

Value

Return a named list of data frames: FanDuelPlayer

FanDuelPlayer

col_name types description
PLAYER_ID character Unique player identifier.
PLAYER_NAME character Player name.
TEAM_ID character Unique team identifier.
TEAM_NAME character Full team display name (e.g. 'Las Vegas Aces').
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
JERSEY_NUM character Jersey number worn by the player.
PLAYER_POSITION character
LOCATION character Filter results by game location.
FAN_DUEL_PTS character
WNBA_FANTASY_PTS character
USG_PCT character Usage percentage (0-1).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.

Author(s)

Saiem Gilani

See Also

Other WNBA Player Functions: wnba_leaguedashplayerbiostats(), wnba_leaguedashplayerclutch(), wnba_leaguedashplayershotlocations(), wnba_leaguedashplayerstats(), wnba_leagueplayerondetails(), wnba_leagueseasonmatchups(), wnba_playerawards(), wnba_playercareerbycollege(), wnba_playercareerbycollegerollup(), wnba_playercareerstats(), wnba_playercompare(), wnba_playerdashboardbyclutch(), wnba_playerdashboardbygamesplits(), wnba_playerdashboardbygeneralsplits(), wnba_playerdashboardbylastngames(), wnba_playerdashboardbyopponent(), wnba_playerdashboardbyshootingsplits(), wnba_playerdashboardbyteamperformance(), wnba_playerdashboardbyyearoveryear(), wnba_playerestimatedmetrics(), wnba_playerfantasyprofile(), wnba_playerfantasyprofilebargraph(), wnba_playergamelog(), wnba_playergamelogs(), wnba_playergamestreakfinder(), wnba_playerheadshot(), wnba_playerindex(), wnba_playernextngames(), wnba_playerprofilev2(), wnba_playervsplayer()

Other WNBA Fantasy Functions: wnba_fantasywidget(), wnba_playerfantasyprofile(), wnba_playerfantasyprofilebargraph()


Get WNBA Stats API League Dashboard Lineups

Description

Get WNBA Stats API League Dashboard Lineups

Get WNBA Stats API League Dashboard Lineups

Usage

wnba_leaguedashlineups(
  conference = "",
  date_from = "",
  date_to = "",
  division = "",
  game_segment = "",
  group_quantity = 5,
  last_n_games = 0,
  league_id = "10",
  location = "",
  measure_type = "Base",
  month = 0,
  opponent_team_id = 0,
  outcome = "",
  po_round = "",
  pace_adjust = "N",
  per_mode = "Totals",
  period = 0,
  plus_minus = "N",
  rank = "N",
  season = most_recent_wnba_season() - 1,
  season_segment = "",
  season_type = "Regular Season",
  shot_clock_range = "",
  team_id = "",
  vs_conference = "",
  vs_division = "",
  ...
)

Arguments

conference

conference

date_from

date_from

date_to

date_to

division

division

game_segment

game_segment

group_quantity

group_quantity

last_n_games

last_n_games

league_id

league_id

location

location

measure_type

measure_type

month

month

opponent_team_id

opponent_team_id

outcome

outcome

po_round

po_round

pace_adjust

pace_adjust

per_mode

per_mode

period

period

plus_minus

plus_minus

rank

rank

season

season

season_segment

season_segment

season_type

season_type

shot_clock_range

shot_clock_range

team_id

team_id

vs_conference

vs_conference

vs_division

vs_division

...

Additional arguments passed to an underlying function like httr.

Details

 wnba_leaguedashlineups(league_id = '10', season = most_recent_wnba_season() - 1)

Value

Returns a named list of data frames: Lineups

Lineups

col_name types description
GROUP_SET character
GROUP_ID character Group identifier (e.g. conference group_id).
GROUP_NAME character Group name.
TEAM_ID character Unique team identifier.
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character

Author(s)

Saiem Gilani

See Also

Other WNBA League Functions: wnba_leaguedashplayerbiostats(), wnba_leaguedashplayerclutch(), wnba_leaguedashplayershotlocations(), wnba_leaguedashplayerstats(), wnba_leaguedashteamclutch(), wnba_leaguedashteamshotlocations(), wnba_leaguedashteamstats(), wnba_leaguegamefinder(), wnba_leaguegamelog(), wnba_leaguelineupviz(), wnba_leagueplayerondetails(), wnba_leagueseasonmatchups(), wnba_leaguestandingsv3(), wnba_shotchartleaguewide()

Other WNBA Lineup Functions: wnba_gamerotation(), wnba_leaguelineupviz(), wnba_shotchartlineupdetail(), wnba_teamdashlineups()


Get WNBA Stats API League Dashboard Player Biographical Stats

Description

Get WNBA Stats API League Dashboard Player Biographical Stats

Get WNBA Stats API League Dashboard Player Biographical Stats

Usage

wnba_leaguedashplayerbiostats(
  college = "",
  conference = "",
  country = "",
  date_from = "",
  date_to = "",
  division = "",
  draft_pick = "",
  draft_year = "",
  game_segment = "",
  game_scope = "",
  height = "",
  last_n_games = 0,
  league_id = "10",
  location = "",
  month = 0,
  opponent_team_id = 0,
  outcome = "",
  po_round = "",
  per_mode = "Totals",
  period = "",
  player_experience = "",
  player_position = "",
  season = most_recent_wnba_season() - 1,
  season_segment = "",
  season_type = "Regular Season",
  shot_clock_range = "",
  starter_bench = "",
  team_id = "",
  touch_time_range = "",
  vs_conference = "",
  vs_division = "",
  weight = "",
  ...
)

Arguments

college

college

conference

conference

country

country

date_from

date_from

date_to

date_to

division

division

draft_pick

draft_pick

draft_year

draft_year

game_segment

game_segment

game_scope

game_scope

height

height

last_n_games

last_n_games

league_id

league_id

location

location

month

month

opponent_team_id

opponent_team_id

outcome

outcome

po_round

po_round

per_mode

per_mode

period

period

player_experience

player_experience

player_position

player_position

season

season

season_segment

season_segment

season_type

season_type

shot_clock_range

shot_clock_range

starter_bench

starter_bench

team_id

team_id

touch_time_range

touch_time_range

vs_conference

vs_conference

vs_division

vs_division

weight

weight

...

Additional arguments passed to an underlying function like httr.

Details

  wnba_leaguedashplayerbiostats(league_id = '10', season = most_recent_wnba_season() - 1)

Value

Returns a named list of data frames: LeagueDashPlayerBioStats

LeagueDashPlayerBioStats

col_name types description
PLAYER_ID character Unique player identifier.
PLAYER_NAME character Player name.
TEAM_ID character Unique team identifier.
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
AGE character Player age (in years).
PLAYER_HEIGHT character
PLAYER_HEIGHT_INCHES character
PLAYER_WEIGHT character
COLLEGE character College or school attended.
COUNTRY character Country (full name or code).
DRAFT_YEAR character Draft year (4-digit).
DRAFT_ROUND character Round of the draft selection.
DRAFT_NUMBER character
GP character Games played.
PTS character Points scored.
REB character Total rebounds.
AST character Assists.
NET_RATING character Net rating (off rating - def rating).
OREB_PCT character Offensive rebound percentage (0-1).
DREB_PCT character Defensive rebound percentage (0-1).
USG_PCT character Usage percentage (0-1).
TS_PCT character True shooting percentage (0-1).
AST_PCT character Assist percentage (0-1).

Author(s)

Saiem Gilani

See Also

Other WNBA League Functions: wnba_leaguedashlineups(), wnba_leaguedashplayerclutch(), wnba_leaguedashplayershotlocations(), wnba_leaguedashplayerstats(), wnba_leaguedashteamclutch(), wnba_leaguedashteamshotlocations(), wnba_leaguedashteamstats(), wnba_leaguegamefinder(), wnba_leaguegamelog(), wnba_leaguelineupviz(), wnba_leagueplayerondetails(), wnba_leagueseasonmatchups(), wnba_leaguestandingsv3(), wnba_shotchartleaguewide()

Other WNBA Player Functions: wnba_infographicfanduelplayer(), wnba_leaguedashplayerclutch(), wnba_leaguedashplayershotlocations(), wnba_leaguedashplayerstats(), wnba_leagueplayerondetails(), wnba_leagueseasonmatchups(), wnba_playerawards(), wnba_playercareerbycollege(), wnba_playercareerbycollegerollup(), wnba_playercareerstats(), wnba_playercompare(), wnba_playerdashboardbyclutch(), wnba_playerdashboardbygamesplits(), wnba_playerdashboardbygeneralsplits(), wnba_playerdashboardbylastngames(), wnba_playerdashboardbyopponent(), wnba_playerdashboardbyshootingsplits(), wnba_playerdashboardbyteamperformance(), wnba_playerdashboardbyyearoveryear(), wnba_playerestimatedmetrics(), wnba_playerfantasyprofile(), wnba_playerfantasyprofilebargraph(), wnba_playergamelog(), wnba_playergamelogs(), wnba_playergamestreakfinder(), wnba_playerheadshot(), wnba_playerindex(), wnba_playernextngames(), wnba_playerprofilev2(), wnba_playervsplayer()


Get WNBA Stats API League Dashboard by Player Clutch Splits

Description

Get WNBA Stats API League Dashboard by Player Clutch Splits

Get WNBA Stats API League Dashboard by Player Clutch Splits

Usage

wnba_leaguedashplayerclutch(
  ahead_behind = "Ahead or Behind",
  clutch_time = "Last 5 Minutes",
  college = "",
  conference = "",
  country = "",
  date_from = "",
  date_to = "",
  division = "",
  draft_pick = "",
  draft_year = "",
  game_scope = "",
  game_segment = "",
  height = "",
  last_n_games = 0,
  league_id = "10",
  location = "",
  measure_type = "Base",
  month = 0,
  opponent_team_id = 0,
  outcome = "",
  pace_adjust = "N",
  plus_minus = "N",
  point_diff = 5,
  po_round = "",
  per_mode = "Totals",
  period = 0,
  player_experience = "",
  player_position = "",
  rank = "N",
  season = most_recent_wnba_season() - 1,
  season_segment = "",
  season_type = "Regular Season",
  shot_clock_range = "",
  starter_bench = "",
  team_id = "",
  touch_time_range = "",
  vs_conference = "",
  vs_division = "",
  weight = "",
  ...
)

Arguments

ahead_behind

ahead_behind

clutch_time

clutch_time

college

college

conference

conference

country

country

date_from

date_from

date_to

date_to

division

division

draft_pick

draft_pick

draft_year

draft_year

game_scope

game_scope

game_segment

game_segment

height

height

last_n_games

last_n_games

league_id

league_id

location

location

measure_type

measure_type

month

month

opponent_team_id

opponent_team_id

outcome

outcome

pace_adjust

pace_adjust

plus_minus

plus_minus

point_diff

point_diff

po_round

po_round

per_mode

per_mode

period

period

player_experience

player_experience

player_position

player_position

rank

rank

season

season

season_segment

season_segment

season_type

season_type

shot_clock_range

shot_clock_range

starter_bench

starter_bench

team_id

team_id

touch_time_range

touch_time_range

vs_conference

vs_conference

vs_division

vs_division

weight

weight

...

Additional arguments passed to an underlying function like httr.

Details

 wnba_leaguedashplayerclutch(league_id = '10', season = most_recent_wnba_season() - 1)

Value

Returns a named list of data frames: LeagueDashPlayerClutch

LeagueDashPlayerClutch

col_name types description
GROUP_SET character
PLAYER_ID character Unique player identifier.
PLAYER_NAME character Player name.
NICKNAME character Team or athlete nickname.
TEAM_ID character Unique team identifier.
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
AGE character Player age (in years).
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
NBA_FANTASY_PTS character
DD2 character
TD3 character
WNBA_FANTASY_PTS character
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character
NBA_FANTASY_PTS_RANK character
DD2_RANK character
TD3_RANK character
WNBA_FANTASY_PTS_RANK character

Author(s)

Saiem Gilani

See Also

Other WNBA League Functions: wnba_leaguedashlineups(), wnba_leaguedashplayerbiostats(), wnba_leaguedashplayershotlocations(), wnba_leaguedashplayerstats(), wnba_leaguedashteamclutch(), wnba_leaguedashteamshotlocations(), wnba_leaguedashteamstats(), wnba_leaguegamefinder(), wnba_leaguegamelog(), wnba_leaguelineupviz(), wnba_leagueplayerondetails(), wnba_leagueseasonmatchups(), wnba_leaguestandingsv3(), wnba_shotchartleaguewide()

Other WNBA Player Functions: wnba_infographicfanduelplayer(), wnba_leaguedashplayerbiostats(), wnba_leaguedashplayershotlocations(), wnba_leaguedashplayerstats(), wnba_leagueplayerondetails(), wnba_leagueseasonmatchups(), wnba_playerawards(), wnba_playercareerbycollege(), wnba_playercareerbycollegerollup(), wnba_playercareerstats(), wnba_playercompare(), wnba_playerdashboardbyclutch(), wnba_playerdashboardbygamesplits(), wnba_playerdashboardbygeneralsplits(), wnba_playerdashboardbylastngames(), wnba_playerdashboardbyopponent(), wnba_playerdashboardbyshootingsplits(), wnba_playerdashboardbyteamperformance(), wnba_playerdashboardbyyearoveryear(), wnba_playerestimatedmetrics(), wnba_playerfantasyprofile(), wnba_playerfantasyprofilebargraph(), wnba_playergamelog(), wnba_playergamelogs(), wnba_playergamestreakfinder(), wnba_playerheadshot(), wnba_playerindex(), wnba_playernextngames(), wnba_playerprofilev2(), wnba_playervsplayer()


Get WNBA Stats API League Dashboard Player Shot Locations

Description

Get WNBA Stats API League Dashboard Player Shot Locations

Get WNBA Stats API League Dashboard Player Shot Locations

Usage

wnba_leaguedashplayershotlocations(
  college = "",
  conference = "",
  country = "",
  date_from = "",
  date_to = "",
  distance_range = "By Zone",
  division = "",
  draft_pick = "",
  draft_year = "",
  dribble_range = "",
  game_scope = "",
  game_segment = "",
  height = "",
  last_n_games = 0,
  league_id = "10",
  location = "",
  measure_type = "Base",
  month = 0,
  opponent_team_id = 0,
  outcome = "",
  po_round = "",
  pace_adjust = "N",
  per_mode = "Totals",
  period = 0,
  player_experience = "",
  player_position = "",
  plus_minus = "N",
  rank = "N",
  season = most_recent_wnba_season() - 1,
  season_segment = "",
  season_type = "Regular Season",
  shot_clock_range = "",
  starter_bench = "",
  team_id = "",
  vs_conference = "",
  vs_division = "",
  weight = "",
  ...
)

Arguments

college

college

conference

conference

country

country

date_from

date_from

date_to

date_to

distance_range

distance_range

division

division

draft_pick

draft_pick

draft_year

draft_year

dribble_range

dribble_range

game_scope

game_scope

game_segment

game_segment

height

height

last_n_games

last_n_games

league_id

league_id

location

location

measure_type

measure_type

month

month

opponent_team_id

opponent_team_id

outcome

outcome

po_round

po_round

pace_adjust

pace_adjust

per_mode

per_mode

period

period

player_experience

player_experience

player_position

player_position

plus_minus

plus_minus

rank

rank

season

season

season_segment

season_segment

season_type

season_type

shot_clock_range

shot_clock_range

starter_bench

starter_bench

team_id

team_id

vs_conference

vs_conference

vs_division

vs_division

weight

weight

...

Additional arguments passed to an underlying function like httr.

Details

  wnba_leaguedashplayershotlocations(league_id = '10', season = most_recent_wnba_season() - 1)

Value

Returns a named list of data frames: ShotLocations

ShotLocations

col_name types description
PLAYER_ID character Unique player identifier.
PLAYER_NAME character Player name.
TEAM_ID character Unique team identifier.
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
AGE character Player age (in years).
NICKNAME character Team or athlete nickname.
Restricted_Area_FGM character
Restricted_Area_FGA character
Restricted_Area_FG_PCT character
In_The_Paint_Non_RA_FGM character
In_The_Paint_Non_RA_FGA character
In_The_Paint_Non_RA_FG_PCT character
Mid_Range_FGM character
Mid_Range_FGA character
Mid_Range_FG_PCT character
Left_Corner_3_FGM character
Left_Corner_3_FGA character
Left_Corner_3_FG_PCT character
Right_Corner_3_FGM character
Right_Corner_3_FGA character
Right_Corner_3_FG_PCT character
Above_the_Break_3_FGM character
Above_the_Break_3_FGA character
Above_the_Break_3_FG_PCT character
Backcourt_FGM character
Backcourt_FGA character
Backcourt_FG_PCT character
Corner_3_FGM character
Corner_3_FGA character
Corner_3_FG_PCT character

Author(s)

Saiem Gilani

See Also

Other WNBA League Functions: wnba_leaguedashlineups(), wnba_leaguedashplayerbiostats(), wnba_leaguedashplayerclutch(), wnba_leaguedashplayerstats(), wnba_leaguedashteamclutch(), wnba_leaguedashteamshotlocations(), wnba_leaguedashteamstats(), wnba_leaguegamefinder(), wnba_leaguegamelog(), wnba_leaguelineupviz(), wnba_leagueplayerondetails(), wnba_leagueseasonmatchups(), wnba_leaguestandingsv3(), wnba_shotchartleaguewide()

Other WNBA Player Functions: wnba_infographicfanduelplayer(), wnba_leaguedashplayerbiostats(), wnba_leaguedashplayerclutch(), wnba_leaguedashplayerstats(), wnba_leagueplayerondetails(), wnba_leagueseasonmatchups(), wnba_playerawards(), wnba_playercareerbycollege(), wnba_playercareerbycollegerollup(), wnba_playercareerstats(), wnba_playercompare(), wnba_playerdashboardbyclutch(), wnba_playerdashboardbygamesplits(), wnba_playerdashboardbygeneralsplits(), wnba_playerdashboardbylastngames(), wnba_playerdashboardbyopponent(), wnba_playerdashboardbyshootingsplits(), wnba_playerdashboardbyteamperformance(), wnba_playerdashboardbyyearoveryear(), wnba_playerestimatedmetrics(), wnba_playerfantasyprofile(), wnba_playerfantasyprofilebargraph(), wnba_playergamelog(), wnba_playergamelogs(), wnba_playergamestreakfinder(), wnba_playerheadshot(), wnba_playerindex(), wnba_playernextngames(), wnba_playerprofilev2(), wnba_playervsplayer()

Other WNBA Shooting Functions: wnba_leaguedashteamshotlocations(), wnba_playerdashboardbyshootingsplits(), wnba_shotchartdetail(), wnba_shotchartleaguewide(), wnba_shotchartlineupdetail(), wnba_teamdashboardbyshootingsplits()


Get WNBA Stats API League Dashboard Player Stats

Description

Get WNBA Stats API League Dashboard Player Stats

Get WNBA Stats API League Dashboard Player Stats

Usage

wnba_leaguedashplayerstats(
  college = "",
  conference = "",
  country = "",
  date_from = "",
  date_to = "",
  division = "",
  draft_pick = "",
  draft_year = "",
  game_scope = "",
  game_segment = "",
  height = "",
  last_n_games = 0,
  league_id = "10",
  location = "",
  measure_type = "Base",
  month = 0,
  opponent_team_id = 0,
  outcome = "",
  pace_adjust = "N",
  po_round = "",
  per_mode = "Totals",
  period = 0,
  player_experience = "",
  player_position = "",
  plus_minus = "N",
  rank = "N",
  season = most_recent_wnba_season() - 1,
  season_segment = "",
  season_type = "Regular Season",
  shot_clock_range = "",
  starter_bench = "",
  team_id = "",
  two_way = "",
  vs_conference = "",
  vs_division = "",
  weight = "",
  ...
)

Arguments

college

college

conference

conference

country

country

date_from

date_from

date_to

date_to

division

division

draft_pick

draft_pick

draft_year

draft_year

game_scope

game_scope

game_segment

game_segment

height

height

last_n_games

last_n_games

league_id

league_id

location

location

measure_type

measure_type

month

month

opponent_team_id

opponent_team_id

outcome

outcome

pace_adjust

pace_adjust

po_round

po_round

per_mode

per_mode

period

period

player_experience

player_experience

player_position

player_position

plus_minus

plus_minus

rank

rank

season

season

season_segment

season_segment

season_type

season_type

shot_clock_range

shot_clock_range

starter_bench

starter_bench

team_id

team_id

two_way

two_way

vs_conference

vs_conference

vs_division

vs_division

weight

weight

...

Additional arguments passed to an underlying function like httr.

Details

 wnba_leaguedashplayerstats(league_id = '10', season = most_recent_wnba_season() - 1)

Value

Returns a named list of data frames: LeagueDashPlayerStats

LeagueDashPlayerStats

col_name types description
PLAYER_ID character Unique player identifier.
PLAYER_NAME character Player name.
NICKNAME character Team or athlete nickname.
TEAM_ID character Unique team identifier.
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
AGE character Player age (in years).
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
NBA_FANTASY_PTS character
DD2 character
TD3 character
WNBA_FANTASY_PTS character
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character
NBA_FANTASY_PTS_RANK character
DD2_RANK character
TD3_RANK character
WNBA_FANTASY_PTS_RANK character

Author(s)

Saiem Gilani

See Also

Other WNBA League Functions: wnba_leaguedashlineups(), wnba_leaguedashplayerbiostats(), wnba_leaguedashplayerclutch(), wnba_leaguedashplayershotlocations(), wnba_leaguedashteamclutch(), wnba_leaguedashteamshotlocations(), wnba_leaguedashteamstats(), wnba_leaguegamefinder(), wnba_leaguegamelog(), wnba_leaguelineupviz(), wnba_leagueplayerondetails(), wnba_leagueseasonmatchups(), wnba_leaguestandingsv3(), wnba_shotchartleaguewide()

Other WNBA Player Functions: wnba_infographicfanduelplayer(), wnba_leaguedashplayerbiostats(), wnba_leaguedashplayerclutch(), wnba_leaguedashplayershotlocations(), wnba_leagueplayerondetails(), wnba_leagueseasonmatchups(), wnba_playerawards(), wnba_playercareerbycollege(), wnba_playercareerbycollegerollup(), wnba_playercareerstats(), wnba_playercompare(), wnba_playerdashboardbyclutch(), wnba_playerdashboardbygamesplits(), wnba_playerdashboardbygeneralsplits(), wnba_playerdashboardbylastngames(), wnba_playerdashboardbyopponent(), wnba_playerdashboardbyshootingsplits(), wnba_playerdashboardbyteamperformance(), wnba_playerdashboardbyyearoveryear(), wnba_playerestimatedmetrics(), wnba_playerfantasyprofile(), wnba_playerfantasyprofilebargraph(), wnba_playergamelog(), wnba_playergamelogs(), wnba_playergamestreakfinder(), wnba_playerheadshot(), wnba_playerindex(), wnba_playernextngames(), wnba_playerprofilev2(), wnba_playervsplayer()


Get WNBA Stats API League Dashboard by Team Clutch Splits

Description

Get WNBA Stats API League Dashboard by Team Clutch Splits

Get WNBA Stats API League Dashboard by Team Clutch Splits

Usage

wnba_leaguedashteamclutch(
  ahead_behind = "Ahead or Behind",
  clutch_time = "Last 5 Minutes",
  conference = "",
  date_from = "",
  date_to = "",
  division = "",
  game_scope = "",
  game_segment = "",
  last_n_games = 0,
  league_id = "10",
  location = "",
  measure_type = "Base",
  month = 0,
  opponent_team_id = 0,
  outcome = "",
  pace_adjust = "N",
  plus_minus = "N",
  point_diff = 5,
  po_round = "",
  per_mode = "Totals",
  period = 0,
  player_experience = "",
  player_position = "",
  rank = "N",
  season = most_recent_wnba_season() - 1,
  season_segment = "",
  season_type = "Regular Season",
  shot_clock_range = "",
  starter_bench = "",
  team_id = "",
  vs_conference = "",
  vs_division = "",
  ...
)

Arguments

ahead_behind

ahead_behind

clutch_time

clutch_time

conference

conference

date_from

date_from

date_to

date_to

division

division

game_scope

game_scope

game_segment

game_segment

last_n_games

last_n_games

league_id

league_id

location

location

measure_type

measure_type

month

month

opponent_team_id

opponent_team_id

outcome

outcome

pace_adjust

pace_adjust

plus_minus

plus_minus

point_diff

point_diff

po_round

po_round

per_mode

per_mode

period

period

player_experience

player_experience

player_position

player_position

rank

rank

season

season

season_segment

season_segment

season_type

season_type

shot_clock_range

shot_clock_range

starter_bench

starter_bench

team_id

team_id

vs_conference

vs_conference

vs_division

vs_division

...

Additional arguments passed to an underlying function like httr.

Details

 wnba_leaguedashteamclutch(league_id = '10', season = most_recent_wnba_season() - 1)

Value

Returns a named list of data frames: LeagueDashTeamClutch

LeagueDashTeamClutch

col_name types description
TEAM_ID character Unique team identifier.
TEAM_NAME character Full team display name (e.g. 'Las Vegas Aces').
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character

Author(s)

Saiem Gilani

See Also

Other WNBA League Functions: wnba_leaguedashlineups(), wnba_leaguedashplayerbiostats(), wnba_leaguedashplayerclutch(), wnba_leaguedashplayershotlocations(), wnba_leaguedashplayerstats(), wnba_leaguedashteamshotlocations(), wnba_leaguedashteamstats(), wnba_leaguegamefinder(), wnba_leaguegamelog(), wnba_leaguelineupviz(), wnba_leagueplayerondetails(), wnba_leagueseasonmatchups(), wnba_leaguestandingsv3(), wnba_shotchartleaguewide()

Other WNBA Clutch Functions: wnba_playerdashboardbyclutch(), wnba_teamdashboardbyclutch()


Get WNBA Stats API League Dashboard Team Shot Locations

Description

Get WNBA Stats API League Dashboard Team Shot Locations

Get WNBA Stats API League Dashboard Team Shot Locations

Usage

wnba_leaguedashteamshotlocations(
  conference = "",
  date_from = "",
  date_to = "",
  distance_range = "By Zone",
  division = "",
  game_scope = "",
  game_segment = "",
  last_n_games = 0,
  league_id = "10",
  location = "",
  measure_type = "Base",
  month = 0,
  opponent_team_id = 0,
  outcome = "",
  po_round = "",
  pace_adjust = "N",
  per_mode = "Totals",
  period = 0,
  player_experience = "",
  player_position = "",
  plus_minus = "N",
  rank = "N",
  season = most_recent_wnba_season() - 1,
  season_segment = "",
  season_type = "Regular Season",
  shot_clock_range = "",
  starter_bench = "",
  team_id = "",
  vs_conference = "",
  vs_division = "",
  ...
)

Arguments

conference

conference

date_from

date_from

date_to

date_to

distance_range

distance_range

division

division

game_scope

game_scope

game_segment

game_segment

last_n_games

last_n_games

league_id

league_id

location

location

measure_type

measure_type

month

month

opponent_team_id

opponent_team_id

outcome

outcome

po_round

po_round

pace_adjust

pace_adjust

per_mode

per_mode

period

period

player_experience

player_experience

player_position

player_position

plus_minus

plus_minus

rank

rank

season

season

season_segment

season_segment

season_type

season_type

shot_clock_range

shot_clock_range

starter_bench

starter_bench

team_id

team_id

vs_conference

vs_conference

vs_division

vs_division

...

Additional arguments passed to an underlying function like httr.

Details

 wnba_leaguedashteamshotlocations(league_id = '10', season = most_recent_wnba_season() - 1)

Value

Returns a named list of data frames: ShotLocations

ShotLocations

col_name types description
TEAM_ID character Unique team identifier.
TEAM_NAME character Full team display name (e.g. 'Las Vegas Aces').
Restricted_Area_FGM character
Restricted_Area_FGA character
Restricted_Area_FG_PCT character
In_The_Paint_Non_RA_FGM character
In_The_Paint_Non_RA_FGA character
In_The_Paint_Non_RA_FG_PCT character
Mid_Range_FGM character
Mid_Range_FGA character
Mid_Range_FG_PCT character
Left_Corner_3_FGM character
Left_Corner_3_FGA character
Left_Corner_3_FG_PCT character
Right_Corner_3_FGM character
Right_Corner_3_FGA character
Right_Corner_3_FG_PCT character
Above_the_Break_3_FGM character
Above_the_Break_3_FGA character
Above_the_Break_3_FG_PCT character
Backcourt_FGM character
Backcourt_FGA character
Backcourt_FG_PCT character
Corner_3_FGM character
Corner_3_FGA character
Corner_3_FG_PCT character

Author(s)

Saiem Gilani

See Also

Other WNBA League Functions: wnba_leaguedashlineups(), wnba_leaguedashplayerbiostats(), wnba_leaguedashplayerclutch(), wnba_leaguedashplayershotlocations(), wnba_leaguedashplayerstats(), wnba_leaguedashteamclutch(), wnba_leaguedashteamstats(), wnba_leaguegamefinder(), wnba_leaguegamelog(), wnba_leaguelineupviz(), wnba_leagueplayerondetails(), wnba_leagueseasonmatchups(), wnba_leaguestandingsv3(), wnba_shotchartleaguewide()

Other WNBA Shooting Functions: wnba_leaguedashplayershotlocations(), wnba_playerdashboardbyshootingsplits(), wnba_shotchartdetail(), wnba_shotchartleaguewide(), wnba_shotchartlineupdetail(), wnba_teamdashboardbyshootingsplits()


Get WNBA Stats API League Dashboard Team Stats

Description

Get WNBA Stats API League Dashboard Team Stats

Get WNBA Stats API League Dashboard Team Stats

Usage

wnba_leaguedashteamstats(
  conference = "",
  date_from = "",
  date_to = "",
  division = "",
  game_scope = "",
  game_segment = "",
  last_n_games = 0,
  league_id = "10",
  location = "",
  measure_type = "Base",
  month = 0,
  opponent_team_id = 0,
  outcome = "",
  po_round = "",
  pace_adjust = "N",
  per_mode = "Totals",
  period = 0,
  plus_minus = "N",
  rank = "N",
  season = most_recent_wnba_season() - 1,
  season_segment = "",
  season_type = "Regular Season",
  shot_clock_range = "",
  starter_bench = "",
  team_id = "",
  two_way = "",
  vs_conference = "",
  vs_division = "",
  ...
)

Arguments

conference

conference

date_from

date_from

date_to

date_to

division

division

game_scope

game_scope

game_segment

game_segment

last_n_games

last_n_games

league_id

league_id

location

location

measure_type

measure_type

month

month

opponent_team_id

opponent_team_id

outcome

outcome

po_round

po_round

pace_adjust

pace_adjust

per_mode

per_mode

period

period

plus_minus

plus_minus

rank

rank

season

season

season_segment

season_segment

season_type

season_type

shot_clock_range

shot_clock_range

starter_bench

starter_bench

team_id

team_id

two_way

two_way

vs_conference

vs_conference

vs_division

vs_division

...

Additional arguments passed to an underlying function like httr.

Details

 wnba_leaguedashteamstats(league_id = '10', season = most_recent_wnba_season() - 1)

Value

Returns a named list of data frames: LeagueDashTeamStats

LeagueDashTeamStats

col_name types description
TEAM_ID character Unique team identifier.
TEAM_NAME character Full team display name (e.g. 'Las Vegas Aces').
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character

Author(s)

Saiem Gilani

See Also

Other WNBA League Functions: wnba_leaguedashlineups(), wnba_leaguedashplayerbiostats(), wnba_leaguedashplayerclutch(), wnba_leaguedashplayershotlocations(), wnba_leaguedashplayerstats(), wnba_leaguedashteamclutch(), wnba_leaguedashteamshotlocations(), wnba_leaguegamefinder(), wnba_leaguegamelog(), wnba_leaguelineupviz(), wnba_leagueplayerondetails(), wnba_leagueseasonmatchups(), wnba_leaguestandingsv3(), wnba_shotchartleaguewide()

Other WNBA Team Functions: wnba_teamdashboardbyclutch(), wnba_teamdashboardbygamesplits(), wnba_teamdashboardbygeneralsplits(), wnba_teamdashboardbylastngames(), wnba_teamdashboardbyopponent(), wnba_teamdashboardbyshootingsplits(), wnba_teamdashboardbyteamperformance(), wnba_teamdashboardbyyearoveryear(), wnba_teamdashlineups(), wnba_teamdetails(), wnba_teamestimatedmetrics(), wnba_teamgamelog(), wnba_teamgamelogs(), wnba_teamgamestreakfinder(), wnba_teamhistoricalleaders(), wnba_teaminfocommon(), wnba_teamplayerdashboard(), wnba_teamplayeronoffdetails(), wnba_teamplayeronoffsummary(), wnba_teams(), wnba_teamvsplayer(), wnba_teamyearbyyearstats()


Get WNBA Stats API League Game Streak Finder

Description

Get WNBA Stats API League Game Streak Finder

Get WNBA Stats API League Game Streak Finder

Usage

wnba_leaguegamefinder(
  conference = "",
  date_from = "",
  date_to = "",
  division = "",
  draft_year = "",
  draft_team_id = "",
  draft_round = "",
  draft_number = "",
  et_ast = "",
  et_blk = "",
  et_dd = "",
  et_dreb = "",
  et_fg3a = "",
  et_fg3m = "",
  et_fg3_pct = "",
  et_fga = "",
  et_fgm = "",
  et_fg_pct = "",
  et_fta = "",
  et_ftm = "",
  et_ft_pct = "",
  et_minutes = "",
  et_oreb = "",
  et_pf = "",
  et_pts = "",
  et_reb = "",
  et_stl = "",
  et_td = "",
  et_tov = "",
  game_id = "",
  gt_ast = "",
  gt_blk = "",
  gt_dd = "",
  gt_dreb = "",
  gt_fg3a = "",
  gt_fg3m = "",
  gt_fg3_pct = "",
  gt_fga = "",
  gt_fgm = "",
  gt_fg_pct = "",
  gt_fta = "",
  gt_ftm = "",
  gt_ft_pct = "",
  gt_minutes = "",
  gt_oreb = "",
  gt_pf = "",
  gt_pts = "",
  gt_reb = "",
  gt_stl = "",
  gt_td = "",
  gt_tov = "",
  league_id = "10",
  location = "",
  lt_ast = "",
  lt_blk = "",
  lt_dd = "",
  lt_dreb = "",
  lt_fg3a = "",
  lt_fg3m = "",
  lt_fg3_pct = "",
  lt_fga = "",
  lt_fgm = "",
  lt_fg_pct = "",
  lt_fta = "",
  lt_ftm = "",
  lt_ft_pct = "",
  lt_minutes = "",
  lt_oreb = "",
  lt_pf = "",
  lt_pts = "",
  lt_reb = "",
  lt_stl = "",
  lt_td = "",
  lt_tov = "",
  outcome = "",
  po_round = "",
  player_id = "",
  player_or_team = "T",
  rookie_year = "",
  season = most_recent_wnba_season() - 1,
  season_segment = "",
  season_type = "Regular Season",
  starter_bench = "",
  team_id = "",
  vs_conference = "",
  vs_division = "",
  vs_team_id = "",
  years_experience = "",
  ...
)

Arguments

conference

conference

date_from

date_from

date_to

date_to

division

division

draft_year

draft_year

draft_team_id

draft_team_id

draft_round

draft_round

draft_number

draft_number

et_ast

et_ast

et_blk

et_blk

et_dd

et_dd

et_dreb

et_dreb

et_fg3a

et_fg3a

et_fg3m

et_fg3m

et_fg3_pct

et_fg3_pct

et_fga

et_fga

et_fgm

et_fgm

et_fg_pct

et_fg_pct

et_fta

et_fta

et_ftm

et_ftm

et_ft_pct

et_ft_pct

et_minutes

et_minutes

et_oreb

et_oreb

et_pf

et_pf

et_pts

et_pts

et_reb

et_reb

et_stl

et_stl

et_td

et_td

et_tov

et_tov

game_id

game_id

gt_ast

gt_ast

gt_blk

gt_blk

gt_dd

gt_dd

gt_dreb

gt_dreb

gt_fg3a

gt_fg3a

gt_fg3m

gt_fg3m

gt_fg3_pct

gt_fg3_pct

gt_fga

gt_fga

gt_fgm

gt_fgm

gt_fg_pct

gt_fg_pct

gt_fta

gt_fta

gt_ftm

gt_ftm

gt_ft_pct

gt_ft_pct

gt_minutes

gt_minutes

gt_oreb

gt_oreb

gt_pf

gt_pf

gt_pts

gt_pts

gt_reb

gt_reb

gt_stl

gt_stl

gt_td

gt_td

gt_tov

gt_tov

league_id

league_id

location

location

lt_ast

lt_ast

lt_blk

lt_blk

lt_dd

lt_dd

lt_dreb

lt_dreb

lt_fg3a

lt_fg3a

lt_fg3m

lt_fg3m

lt_fg3_pct

lt_fg3_pct

lt_fga

lt_fga

lt_fgm

lt_fgm

lt_fg_pct

lt_fg_pct

lt_fta

lt_fta

lt_ftm

lt_ftm

lt_ft_pct

lt_ft_pct

lt_minutes

lt_minutes

lt_oreb

lt_oreb

lt_pf

lt_pf

lt_pts

lt_pts

lt_reb

lt_reb

lt_stl

lt_stl

lt_td

lt_td

lt_tov

lt_tov

outcome

outcome

po_round

po_round

player_id

player_id

player_or_team

player_or_team

rookie_year

rookie_year

season

season - Min: '1983-84'

season_segment

season_segment

season_type

season_type

starter_bench

starter_bench

team_id

team_id

vs_conference

vs_conference

vs_division

vs_division

vs_team_id

vs_team_id

years_experience

years_experience

...

Additional arguments passed to an underlying function like httr.

Details

 wnba_leaguegamefinder(league_id = '10', season = most_recent_wnba_season() - 1)

Value

Return a named list of data frames: LeagueGameFinderResults

LeagueGameFinderResults

col_name types description
SEASON_ID character Unique season identifier.
TEAM_ID character Unique team identifier.
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
TEAM_NAME character Full team display name (e.g. 'Las Vegas Aces').
GAME_ID character Unique game identifier.
GAME_DATE character Game date (YYYY-MM-DD).
MATCHUP character Matchup.
WL character
MIN character Minutes played.
PTS character Points scored.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
STL character Steals.
BLK character Blocks.
TOV character Turnovers.
PF character Personal fouls.
PLUS_MINUS character Plus/minus point differential while on court.

Author(s)

Saiem Gilani

See Also

Other WNBA League Functions: wnba_leaguedashlineups(), wnba_leaguedashplayerbiostats(), wnba_leaguedashplayerclutch(), wnba_leaguedashplayershotlocations(), wnba_leaguedashplayerstats(), wnba_leaguedashteamclutch(), wnba_leaguedashteamshotlocations(), wnba_leaguedashteamstats(), wnba_leaguegamelog(), wnba_leaguelineupviz(), wnba_leagueplayerondetails(), wnba_leagueseasonmatchups(), wnba_leaguestandingsv3(), wnba_shotchartleaguewide()

Other WNBA Game Finder Functions: wnba_playergamestreakfinder(), wnba_teamgamestreakfinder()


Get WNBA Stats API League Game Log

Description

Get WNBA Stats API League Game Log

Get WNBA Stats API League Game Log

Usage

wnba_leaguegamelog(
  counter = 0,
  date_from = "",
  date_to = "",
  direction = "ASC",
  league_id = "10",
  player_or_team = "T",
  season = most_recent_wnba_season() - 1,
  season_type = "Regular Season",
  sorter = "DATE",
  ...
)

Arguments

counter

counter

date_from

date_from

date_to

date_to

direction

direction

league_id

league_id. Default '10' (WNBA). Use '00' for NBA or '20' for G-League data on the same endpoint.

player_or_team

player_or_team

season

season

season_type

season_type

sorter

sorter

...

Additional arguments passed to an underlying function like httr.

Details

Player/Team Boxscores

  wnba_leaguegamelog(league_id = '10', season = most_recent_wnba_season() - 1)

Value

Return a named list of data frames: LeagueGameLog

LeagueGameLog

col_name types description
SEASON_ID character Unique season identifier.
TEAM_ID character Unique team identifier.
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
TEAM_NAME character Full team display name (e.g. 'Las Vegas Aces').
GAME_ID character Unique game identifier.
GAME_DATE character Game date (YYYY-MM-DD).
MATCHUP character Matchup.
WL character
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
STL character Steals.
BLK character Blocks.
TOV character Turnovers.
PF character Personal fouls.
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
VIDEO_AVAILABLE character Video available.

Author(s)

Saiem Gilani

See Also

Other WNBA League Functions: wnba_leaguedashlineups(), wnba_leaguedashplayerbiostats(), wnba_leaguedashplayerclutch(), wnba_leaguedashplayershotlocations(), wnba_leaguedashplayerstats(), wnba_leaguedashteamclutch(), wnba_leaguedashteamshotlocations(), wnba_leaguedashteamstats(), wnba_leaguegamefinder(), wnba_leaguelineupviz(), wnba_leagueplayerondetails(), wnba_leagueseasonmatchups(), wnba_leaguestandingsv3(), wnba_shotchartleaguewide()


Get WNBA Stats API League Leaders

Description

Get WNBA Stats API League Leaders

Get WNBA Stats API League Leaders

Usage

wnba_leagueleaders(
  active_flag = "",
  league_id = "10",
  per_mode = "Totals",
  scope = "S",
  season = most_recent_wnba_season() - 1,
  season_type = "Regular Season",
  stat_category = "PTS",
  ...
)

Arguments

active_flag

Active Flag

league_id

League - default: '00'. Other options include '10': WNBA, '20': G-League

per_mode

Per Mode - Totals, PerGame, Per48

scope

Scope - RS, S, Rookies

season

Season - format 2020-21

season_type

Season Type - Regular Season, Playoffs

stat_category

Stat Category: PTS, REB, AST, FG_PCT, FT_PCT, FG3_PCT, STL, BLK

...

Additional arguments passed to an underlying function like httr.

Details

 wnba_leagueleaders(league_id = '10')

Value

Returns a named list of data frames: LeagueLeaders

LeagueLeaders

col_name types description
PLAYER_ID character Unique player identifier.
RANK character Whether to include statistical ranks in the returned table.
PLAYER character
TEAM_ID character Unique team identifier.
TEAM character Team-side label or team identifier.
GP character Games played.
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
STL character Steals.
BLK character Blocks.
TOV character Turnovers.
PF character Personal fouls.
PTS character Points scored.
EFF character
AST_TOV character
STL_TOV character

Author(s)

Saiem Gilani

See Also

Other WNBA Leaders Functions: wnba_alltimeleadersgrids(), wnba_assistleaders(), wnba_assisttracker(), wnba_homepagewidget()


Get WNBA Stats API League Lineup Visual Data

Description

Get WNBA Stats API League Lineup Visual Data

Get WNBA Stats API League Lineup Visual Data

Usage

wnba_leaguelineupviz(
  conference = "",
  date_from = "",
  date_to = "",
  division = "",
  game_segment = "",
  group_quantity = 5,
  last_n_games = 0,
  league_id = "10",
  location = "",
  measure_type = "Base",
  minutes_min = 10,
  month = 0,
  opponent_team_id = 0,
  outcome = "",
  po_round = "",
  pace_adjust = "N",
  per_mode = "Totals",
  period = 0,
  plus_minus = "N",
  rank = "N",
  season = most_recent_wnba_season() - 1,
  season_segment = "",
  season_type = "Regular Season",
  shot_clock_range = "",
  team_id = "",
  vs_conference = "",
  vs_division = "",
  ...
)

Arguments

conference

conference

date_from

date_from

date_to

date_to

division

division

game_segment

game_segment

group_quantity

group_quantity

last_n_games

last_n_games

league_id

league_id

location

location

measure_type

measure_type

minutes_min

minutes_min

month

month

opponent_team_id

opponent_team_id

outcome

outcome

po_round

po_round

pace_adjust

pace_adjust

per_mode

per_mode

period

period

plus_minus

plus_minus

rank

rank

season

season

season_segment

season_segment

season_type

season_type

shot_clock_range

shot_clock_range

team_id

team_id

vs_conference

vs_conference

vs_division

vs_division

...

Additional arguments passed to an underlying function like httr.

Details

  wnba_leaguelineupviz(league_id = '10', season = most_recent_wnba_season() - 1)

Value

Returns a named list of data frames: LeagueLineupViz

LeagueLineupViz

col_name types description
GROUP_ID character Group identifier (e.g. conference group_id).
GROUP_NAME character Group name.
TEAM_ID character Unique team identifier.
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
MIN character Minutes played.
OFF_RATING character Offensive rating (points produced per 100 possessions).
DEF_RATING character Defensive rating (points allowed per 100 possessions).
NET_RATING character Net rating (off rating - def rating).
PACE character Possessions per 48 minutes.
TS_PCT character True shooting percentage (0-1).
FTA_RATE character Free throw attempt rate (FTA / FGA).
TM_AST_PCT character
PCT_FGA_2PT character
PCT_FGA_3PT character
PCT_PTS_2PT_MR character
PCT_PTS_FB character
PCT_PTS_FT character
PCT_PTS_PAINT character
PCT_AST_FGM character
PCT_UAST_FGM character
OPP_FG3_PCT character
OPP_EFG_PCT character
OPP_FTA_RATE character
OPP_TOV_PCT character

Author(s)

Saiem Gilani

See Also

Other WNBA League Functions: wnba_leaguedashlineups(), wnba_leaguedashplayerbiostats(), wnba_leaguedashplayerclutch(), wnba_leaguedashplayershotlocations(), wnba_leaguedashplayerstats(), wnba_leaguedashteamclutch(), wnba_leaguedashteamshotlocations(), wnba_leaguedashteamstats(), wnba_leaguegamefinder(), wnba_leaguegamelog(), wnba_leagueplayerondetails(), wnba_leagueseasonmatchups(), wnba_leaguestandingsv3(), wnba_shotchartleaguewide()

Other WNBA Lineup Functions: wnba_gamerotation(), wnba_leaguedashlineups(), wnba_shotchartlineupdetail(), wnba_teamdashlineups()


Get WNBA Stats API League Player On/Off Details

Description

Get WNBA Stats API League Player On/Off Details

Get WNBA Stats API League Player On/Off Details

Usage

wnba_leagueplayerondetails(
  date_from = "",
  date_to = "",
  game_segment = "",
  last_n_games = 0,
  league_id = "10",
  location = "",
  measure_type = "Base",
  month = 0,
  opponent_team_id = 0,
  outcome = "",
  pace_adjust = "N",
  per_mode = "Totals",
  period = 0,
  plus_minus = "N",
  rank = "N",
  season = most_recent_wnba_season() - 1,
  season_segment = "",
  season_type = "Regular Season",
  team_id = "1611661313",
  vs_conference = "",
  vs_division = "",
  ...
)

Arguments

date_from

date_from

date_to

date_to

game_segment

game_segment

last_n_games

last_n_games

league_id

league_id

location

location

measure_type

measure_type

month

month

opponent_team_id

opponent_team_id

outcome

outcome

pace_adjust

pace_adjust

per_mode

per_mode

period

period

plus_minus

plus_minus

rank

rank

season

season

season_segment

season_segment

season_type

season_type

team_id

team_id

vs_conference

vs_conference

vs_division

vs_division

...

Additional arguments passed to an underlying function like httr.

Details

 wnba_leagueplayerondetails(team_id = '1611661313', season = most_recent_wnba_season() - 1)

Value

Returns a named list of data frames: PlayersOnCourtLeaguePlayerDetails

PlayersOnCourtLeaguePlayerDetails

col_name types description
GROUP_SET character
TEAM_ID character Unique team identifier.
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
TEAM_NAME character Full team display name (e.g. 'Las Vegas Aces').
VS_PLAYER_ID character
VS_PLAYER_NAME character
COURT_STATUS character
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character

Author(s)

Saiem Gilani

See Also

Other WNBA League Functions: wnba_leaguedashlineups(), wnba_leaguedashplayerbiostats(), wnba_leaguedashplayerclutch(), wnba_leaguedashplayershotlocations(), wnba_leaguedashplayerstats(), wnba_leaguedashteamclutch(), wnba_leaguedashteamshotlocations(), wnba_leaguedashteamstats(), wnba_leaguegamefinder(), wnba_leaguegamelog(), wnba_leaguelineupviz(), wnba_leagueseasonmatchups(), wnba_leaguestandingsv3(), wnba_shotchartleaguewide()

Other WNBA Player Functions: wnba_infographicfanduelplayer(), wnba_leaguedashplayerbiostats(), wnba_leaguedashplayerclutch(), wnba_leaguedashplayershotlocations(), wnba_leaguedashplayerstats(), wnba_leagueseasonmatchups(), wnba_playerawards(), wnba_playercareerbycollege(), wnba_playercareerbycollegerollup(), wnba_playercareerstats(), wnba_playercompare(), wnba_playerdashboardbyclutch(), wnba_playerdashboardbygamesplits(), wnba_playerdashboardbygeneralsplits(), wnba_playerdashboardbylastngames(), wnba_playerdashboardbyopponent(), wnba_playerdashboardbyshootingsplits(), wnba_playerdashboardbyteamperformance(), wnba_playerdashboardbyyearoveryear(), wnba_playerestimatedmetrics(), wnba_playerfantasyprofile(), wnba_playerfantasyprofilebargraph(), wnba_playergamelog(), wnba_playergamelogs(), wnba_playergamestreakfinder(), wnba_playerheadshot(), wnba_playerindex(), wnba_playernextngames(), wnba_playerprofilev2(), wnba_playervsplayer()


Get WNBA Stats API League Season Matchups

Description

Get WNBA Stats API League Season Matchups

Get WNBA Stats API League Season Matchups

Usage

wnba_leagueseasonmatchups(
  def_player_id = "",
  def_team_id = "",
  league_id = "10",
  off_player_id = "",
  off_team_id = "",
  per_mode = "Totals",
  season = most_recent_wnba_season() - 1,
  season_type = "Regular Season",
  ...
)

Arguments

def_player_id

def_player_id

def_team_id

def_team_id

league_id

league_id

off_player_id

off_player_id

off_team_id

off_team_id

per_mode

per_mode

season

season

season_type

season_type

...

Additional arguments passed to an underlying function like httr.

Details

(No Matchups Data for WNBA yet, so defunct)

 wnba_leagueseasonmatchups(league_id = '10', season = most_recent_wnba_season() - 1)

Value

Returns a named list of data frames: SeasonMatchups

SeasonMatchups

col_name types description
SEASON_ID character Unique season identifier.
OFF_PLAYER_ID character
OFF_PLAYER_NAME character
DEF_PLAYER_ID character
DEF_PLAYER_NAME character
GP character Games played.
MATCHUP_MIN character
PARTIAL_POSS character
PLAYER_PTS character
TEAM_PTS character
MATCHUP_AST character
MATCHUP_TOV character
MATCHUP_BLK character
MATCHUP_FGM character
MATCHUP_FGA character
MATCHUP_FG_PCT character
MATCHUP_FG3M character
MATCHUP_FG3A character
MATCHUP_FG3_PCT character
HELP_BLK character
HELP_FGM character
HELP_FGA character
HELP_FG_PERC character
MATCHUP_FTM character
MATCHUP_FTA character
SFL character
MATCHUP_TIME_SEC character

Author(s)

Saiem Gilani

See Also

Other WNBA League Functions: wnba_leaguedashlineups(), wnba_leaguedashplayerbiostats(), wnba_leaguedashplayerclutch(), wnba_leaguedashplayershotlocations(), wnba_leaguedashplayerstats(), wnba_leaguedashteamclutch(), wnba_leaguedashteamshotlocations(), wnba_leaguedashteamstats(), wnba_leaguegamefinder(), wnba_leaguegamelog(), wnba_leaguelineupviz(), wnba_leagueplayerondetails(), wnba_leaguestandingsv3(), wnba_shotchartleaguewide()

Other WNBA Player Functions: wnba_infographicfanduelplayer(), wnba_leaguedashplayerbiostats(), wnba_leaguedashplayerclutch(), wnba_leaguedashplayershotlocations(), wnba_leaguedashplayerstats(), wnba_leagueplayerondetails(), wnba_playerawards(), wnba_playercareerbycollege(), wnba_playercareerbycollegerollup(), wnba_playercareerstats(), wnba_playercompare(), wnba_playerdashboardbyclutch(), wnba_playerdashboardbygamesplits(), wnba_playerdashboardbygeneralsplits(), wnba_playerdashboardbylastngames(), wnba_playerdashboardbyopponent(), wnba_playerdashboardbyshootingsplits(), wnba_playerdashboardbyteamperformance(), wnba_playerdashboardbyyearoveryear(), wnba_playerestimatedmetrics(), wnba_playerfantasyprofile(), wnba_playerfantasyprofilebargraph(), wnba_playergamelog(), wnba_playergamelogs(), wnba_playergamestreakfinder(), wnba_playerheadshot(), wnba_playerindex(), wnba_playernextngames(), wnba_playerprofilev2(), wnba_playervsplayer()


Get WNBA Stats API League Standings V3

Description

Get WNBA Stats API League Standings V3

Get WNBA Stats API League Standings V3

Usage

wnba_leaguestandingsv3(
  league_id = "10",
  season = most_recent_wnba_season(),
  season_type = "Regular Season",
  season_year = "",
  ...
)

Arguments

league_id

league_id

season

season

season_type

season_type

season_year

season_year

...

Additional arguments passed to an underlying function like httr.

Details

League Standings

  wnba_leaguestandingsv3(league_id = '10', season = most_recent_wnba_season() - 1)

Value

Return a named list of data frames: Standings

Standings

col_name types description
LeagueID character
SeasonID character
TeamID character
TeamCity character
TeamName character
TeamSlug character
Conference character Filter players or teams by conference.
ConferenceRecord character
PlayoffRank character
ClinchIndicator character
Division character Team division.
DivisionRecord character
DivisionRank character
WINS character Total wins.
LOSSES character Total losses.
WinPCT character
LeagueRank character
Record character Record string (e.g. '12-4').
HOME character Home.
ROAD character Road.
L10 character L10.
Last10Home character
Last10Road character
OT character
ThreePTSOrLess character
TenPTSOrMore character
LongHomeStreak character
strLongHomeStreak character
LongRoadStreak character
strLongRoadStreak character
LongWinStreak character
LongLossStreak character
CurrentHomeStreak character
strCurrentHomeStreak character
CurrentRoadStreak character
strCurrentRoadStreak character
CurrentStreak character
strCurrentStreak character Strcurrentstreak.
ConferenceGamesBack character
DivisionGamesBack character
ClinchedConferenceTitle character
ClinchedDivisionTitle character
ClinchedPlayoffBirth character
ClinchedPlayIn character
EliminatedConference character
EliminatedDivision character
AheadAtHalf character
BehindAtHalf character
TiedAtHalf character
AheadAtThird character
BehindAtThird character
TiedAtThird character
Score100PTS character
OppScore100PTS character
OppOver500 character
LeadInFGPCT character
LeadInReb character
FewerTurnovers character
PointsPG character
OppPointsPG character
DiffPointsPG character
vsEast character
vsAtlantic character
vsCentral character
vsSoutheast character
vsWest character
vsNorthwest character
vsPacific character
vsSouthwest character
Jan character
Feb character
Mar character
Apr character
May character
Jun character
Jul character
Aug character
Sep character
Oct character
Nov character
Dec character
Score_80_Plus character
Opp_Score_80_Plus character
Score_Below_80 character
Opp_Score_Below_80 character
TotalPoints character
OppTotalPoints character
DiffTotalPoints character

Author(s)

Saiem Gilani

See Also

Other WNBA League Functions: wnba_leaguedashlineups(), wnba_leaguedashplayerbiostats(), wnba_leaguedashplayerclutch(), wnba_leaguedashplayershotlocations(), wnba_leaguedashplayerstats(), wnba_leaguedashteamclutch(), wnba_leaguedashteamshotlocations(), wnba_leaguedashteamstats(), wnba_leaguegamefinder(), wnba_leaguegamelog(), wnba_leaguelineupviz(), wnba_leagueplayerondetails(), wnba_leagueseasonmatchups(), wnba_shotchartleaguewide()


Get WNBA Stats API Live Boxscore

Description

Get WNBA Stats API Live Boxscore

Get WNBA Stats API Live Boxscore

Usage

wnba_live_boxscore(game_id, ...)

Arguments

game_id

Game ID

...

Additional arguments passed to an underlying function like httr.

Details

 wnba_live_boxscore(game_id = "1022200034")

Value

Returns a named list of data frames: game_details, arena, officials, home_team_boxscore, away_team_boxscore, home_team_player_boxscore, away_team_player_boxscore, home_team_linescores, away_team_linescores

game_details

col_name types description
game_id character Unique game identifier.
game_time_local character Game time local.
game_time_utc character Game start time in UTC (ISO 8601 timestamp).
game_time_home character Game time home.
game_time_away character Game time away.
game_et character Game et.
duration integer Duration.
game_code character ESPN game code (numeric identifier).
game_status_text character Game status display text (e.g. 'Final', '4:32 - 4th').
game_status integer Game status label.
regulation_periods integer Regulation periods.
period integer Period of the game (1-4 quarters; 5+ for OT).
game_clock character Game clock.
attendance integer Reported attendance.
sellout character Sellout.
home_team_id integer Unique identifier for the home team.
home_team_name character Home team name.
home_team_city character Home team city / location.
home_team_tricode character Home team three-letter code.
home_team_score integer Home team's score.
home_team_in_bonus character Home team's team in bonus.
home_team_timeouts_remaining integer Home team's team timeouts remaining.
away_team_id integer Unique identifier for the away team.
away_team_name character Away team name.
away_team_city character Away team city / location.
away_team_tricode character Away team three-letter code.
away_team_score integer Away team's score.
away_team_in_bonus character Away team's team in bonus.
away_team_timeouts_remaining integer Away team's team timeouts remaining.

arena

col_name types description
arena_id integer Unique identifier for arena.
arena_name character Arena name.
arena_city character Arena city.
arena_state character Arena state.
arena_country character Arena country.
arena_timezone character Arena timezone.

officials

col_name types description
person_id integer Unique player identifier (V3 endpoints).
name character Display name.
name_i character Initialed name (e.g. 'A. Wilson').
first_name character Player's first name.
family_name character Player's family / last name.
jersey_num character Jersey number worn by the player.
assignment character Assignment.

home_team_boxscore

col_name types description
team_id integer Unique team identifier.
team_name character Full team display name (e.g. 'Las Vegas Aces').
team_city character Team city or region (e.g. 'Las Vegas').
team_tricode character Three-letter team code (e.g. 'LAS' / 'NYL').
team_score integer Team's score / final score.
team_in_bonus character Team in bonus.
team_timeouts_remaining integer Team timeouts remaining.
assists integer Total assists.
assists_turnover_ratio numeric Assists turnover ratio.
bench_points integer Points scored by the bench.
biggest_lead integer Biggest lead.
biggest_lead_score character Biggest lead score.
biggest_scoring_run integer Biggest scoring run.
biggest_scoring_run_score character Biggest scoring run score.
blocks integer Total blocks.
blocks_received integer Shots blocked by opponents while attempting.
fast_break_points_attempted integer Number of fast break points attempted.
fast_break_points_made integer Number of fast break points made.
fast_break_points_percentage numeric Fast break points percentage (0-1 decimal).
field_goals_attempted integer Field goal attempts (2-pt + 3-pt).
field_goals_effective_adjusted numeric Field goals effective adjusted.
field_goals_made integer Field goals made (2-pt + 3-pt).
field_goals_percentage numeric Field goal percentage (0-1 decimal).
fouls_offensive integer Offensive fouls.
fouls_drawn integer Personal fouls drawn (by opponent's actions).
fouls_personal integer Personal fouls.
fouls_team integer Fouls team.
fouls_technical integer Technical fouls.
fouls_team_technical integer Fouls team technical.
free_throws_attempted integer Free throw attempts.
free_throws_made integer Free throws made.
free_throws_percentage numeric Free throw percentage (0-1 decimal).
lead_changes integer Lead changes.
minutes character Minutes played, formatted MM:SS (V3 PT-duration parsed) or decimal minutes (V2).
minutes_calculated character Minutes calculated from game-clock differences.
points integer Points scored.
points_against integer Points allowed.
points_fast_break integer Fast-break points scored.
points_from_turnovers integer Points from turnovers.
points_in_the_paint integer Points in the paint.
points_in_the_paint_attempted integer Number of points in the paint attempted.
points_in_the_paint_made integer Number of points in the paint made.
points_in_the_paint_percentage numeric Points in the paint percentage (0-1 decimal).
points_second_chance integer Second-chance points scored.
rebounds_defensive integer Defensive rebounds.
rebounds_offensive integer Offensive rebounds.
rebounds_personal integer Rebounds personal.
rebounds_team integer Rebounds team.
rebounds_team_defensive integer Rebounds team defensive.
rebounds_team_offensive integer Rebounds team offensive.
rebounds_total integer Total rebounds.
second_chance_points_attempted integer Number of second chance points attempted.
second_chance_points_made integer Number of second chance points made.
second_chance_points_percentage numeric Second chance points percentage (0-1 decimal).
steals integer Total steals.
three_pointers_attempted integer Three-point field goal attempts.
three_pointers_made integer Three-point field goals made.
three_pointers_percentage numeric Three-point field goal percentage (0-1 decimal).
time_leading character Time leading.
times_tied integer Times tied.
true_shooting_attempts numeric Number of true shooting attempted.
true_shooting_percentage numeric True shooting percentage (0-1).
turnovers integer Total turnovers.
turnovers_team integer Turnovers team.
turnovers_total integer Turnovers total.
two_pointers_attempted integer Number of two pointers attempted.
two_pointers_made integer Number of two pointers made.
two_pointers_percentage numeric Two pointers percentage (0-1 decimal).

away_team_boxscore

col_name types description
team_id integer Unique team identifier.
team_name character Full team display name (e.g. 'Las Vegas Aces').
team_city character Team city or region (e.g. 'Las Vegas').
team_tricode character Three-letter team code (e.g. 'LAS' / 'NYL').
team_score integer Team's score / final score.
team_in_bonus character Team in bonus.
team_timeouts_remaining integer Team timeouts remaining.
assists integer Total assists.
assists_turnover_ratio numeric Assists turnover ratio.
bench_points integer Points scored by the bench.
biggest_lead integer Biggest lead.
biggest_lead_score character Biggest lead score.
biggest_scoring_run integer Biggest scoring run.
biggest_scoring_run_score character Biggest scoring run score.
blocks integer Total blocks.
blocks_received integer Shots blocked by opponents while attempting.
fast_break_points_attempted integer Number of fast break points attempted.
fast_break_points_made integer Number of fast break points made.
fast_break_points_percentage numeric Fast break points percentage (0-1 decimal).
field_goals_attempted integer Field goal attempts (2-pt + 3-pt).
field_goals_effective_adjusted numeric Field goals effective adjusted.
field_goals_made integer Field goals made (2-pt + 3-pt).
field_goals_percentage numeric Field goal percentage (0-1 decimal).
fouls_offensive integer Offensive fouls.
fouls_drawn integer Personal fouls drawn (by opponent's actions).
fouls_personal integer Personal fouls.
fouls_team integer Fouls team.
fouls_technical integer Technical fouls.
fouls_team_technical integer Fouls team technical.
free_throws_attempted integer Free throw attempts.
free_throws_made integer Free throws made.
free_throws_percentage numeric Free throw percentage (0-1 decimal).
lead_changes integer Lead changes.
minutes character Minutes played, formatted MM:SS (V3 PT-duration parsed) or decimal minutes (V2).
minutes_calculated character Minutes calculated from game-clock differences.
points integer Points scored.
points_against integer Points allowed.
points_fast_break integer Fast-break points scored.
points_from_turnovers integer Points from turnovers.
points_in_the_paint integer Points in the paint.
points_in_the_paint_attempted integer Number of points in the paint attempted.
points_in_the_paint_made integer Number of points in the paint made.
points_in_the_paint_percentage numeric Points in the paint percentage (0-1 decimal).
points_second_chance integer Second-chance points scored.
rebounds_defensive integer Defensive rebounds.
rebounds_offensive integer Offensive rebounds.
rebounds_personal integer Rebounds personal.
rebounds_team integer Rebounds team.
rebounds_team_defensive integer Rebounds team defensive.
rebounds_team_offensive integer Rebounds team offensive.
rebounds_total integer Total rebounds.
second_chance_points_attempted integer Number of second chance points attempted.
second_chance_points_made integer Number of second chance points made.
second_chance_points_percentage numeric Second chance points percentage (0-1 decimal).
steals integer Total steals.
three_pointers_attempted integer Three-point field goal attempts.
three_pointers_made integer Three-point field goals made.
three_pointers_percentage numeric Three-point field goal percentage (0-1 decimal).
time_leading character Time leading.
times_tied integer Times tied.
true_shooting_attempts numeric Number of true shooting attempted.
true_shooting_percentage numeric True shooting percentage (0-1).
turnovers integer Total turnovers.
turnovers_team integer Turnovers team.
turnovers_total integer Turnovers total.
two_pointers_attempted integer Number of two pointers attempted.
two_pointers_made integer Number of two pointers made.
two_pointers_percentage numeric Two pointers percentage (0-1 decimal).

home_team_player_boxscore

col_name types description
team_id integer Unique team identifier.
team_name character Full team display name (e.g. 'Las Vegas Aces').
team_city character Team city or region (e.g. 'Las Vegas').
team_tricode character Three-letter team code (e.g. 'LAS' / 'NYL').
team_score integer Team's score / final score.
team_in_bonus character Team in bonus.
team_timeouts_remaining integer Team timeouts remaining.
status character Status label.
order integer Display order within the result set.
person_id integer Unique player identifier (V3 endpoints).
jersey_num character Jersey number worn by the player.
position character Listed roster position (G, F, C, etc.).
starter character TRUE if the player was in the starting lineup; FALSE otherwise.
oncourt character Oncourt.
played character Played.
assists integer Total assists.
blocks integer Total blocks.
blocks_received integer Shots blocked by opponents while attempting.
field_goals_attempted integer Field goal attempts (2-pt + 3-pt).
field_goals_made integer Field goals made (2-pt + 3-pt).
field_goals_percentage numeric Field goal percentage (0-1 decimal).
fouls_offensive integer Offensive fouls.
fouls_drawn integer Personal fouls drawn (by opponent's actions).
fouls_personal integer Personal fouls.
fouls_technical integer Technical fouls.
free_throws_attempted integer Free throw attempts.
free_throws_made integer Free throws made.
free_throws_percentage numeric Free throw percentage (0-1 decimal).
minus numeric Minus.
minutes character Minutes played, formatted MM:SS (V3 PT-duration parsed) or decimal minutes (V2).
minutes_calculated character Minutes calculated from game-clock differences.
plus numeric Plus.
plus_minus_points numeric Plus/minus point differential while on court.
points integer Points scored.
points_fast_break integer Fast-break points scored.
points_in_the_paint integer Points in the paint.
points_second_chance integer Second-chance points scored.
rebounds_defensive integer Defensive rebounds.
rebounds_offensive integer Offensive rebounds.
rebounds_total integer Total rebounds.
steals integer Total steals.
three_pointers_attempted integer Three-point field goal attempts.
three_pointers_made integer Three-point field goals made.
three_pointers_percentage numeric Three-point field goal percentage (0-1 decimal).
turnovers integer Total turnovers.
two_pointers_attempted integer Number of two pointers attempted.
two_pointers_made integer Number of two pointers made.
two_pointers_percentage numeric Two pointers percentage (0-1 decimal).
name character Display name.
name_i character Initialed name (e.g. 'A. Wilson').
first_name character Player's first name.
family_name character Player's family / last name.
not_playing_reason character Not playing reason.
not_playing_description character Not playing description.

away_team_player_boxscore

col_name types description
team_id integer Unique team identifier.
team_name character Full team display name (e.g. 'Las Vegas Aces').
team_city character Team city or region (e.g. 'Las Vegas').
team_tricode character Three-letter team code (e.g. 'LAS' / 'NYL').
team_score integer Team's score / final score.
team_in_bonus character Team in bonus.
team_timeouts_remaining integer Team timeouts remaining.
status character Status label.
order integer Display order within the result set.
person_id integer Unique player identifier (V3 endpoints).
jersey_num character Jersey number worn by the player.
position character Listed roster position (G, F, C, etc.).
starter character TRUE if the player was in the starting lineup; FALSE otherwise.
oncourt character Oncourt.
played character Played.
assists integer Total assists.
blocks integer Total blocks.
blocks_received integer Shots blocked by opponents while attempting.
field_goals_attempted integer Field goal attempts (2-pt + 3-pt).
field_goals_made integer Field goals made (2-pt + 3-pt).
field_goals_percentage numeric Field goal percentage (0-1 decimal).
fouls_offensive integer Offensive fouls.
fouls_drawn integer Personal fouls drawn (by opponent's actions).
fouls_personal integer Personal fouls.
fouls_technical integer Technical fouls.
free_throws_attempted integer Free throw attempts.
free_throws_made integer Free throws made.
free_throws_percentage numeric Free throw percentage (0-1 decimal).
minus numeric Minus.
minutes character Minutes played, formatted MM:SS (V3 PT-duration parsed) or decimal minutes (V2).
minutes_calculated character Minutes calculated from game-clock differences.
plus numeric Plus.
plus_minus_points numeric Plus/minus point differential while on court.
points integer Points scored.
points_fast_break integer Fast-break points scored.
points_in_the_paint integer Points in the paint.
points_second_chance integer Second-chance points scored.
rebounds_defensive integer Defensive rebounds.
rebounds_offensive integer Offensive rebounds.
rebounds_total integer Total rebounds.
steals integer Total steals.
three_pointers_attempted integer Three-point field goal attempts.
three_pointers_made integer Three-point field goals made.
three_pointers_percentage numeric Three-point field goal percentage (0-1 decimal).
turnovers integer Total turnovers.
two_pointers_attempted integer Number of two pointers attempted.
two_pointers_made integer Number of two pointers made.
two_pointers_percentage numeric Two pointers percentage (0-1 decimal).
name character Display name.
name_i character Initialed name (e.g. 'A. Wilson').
first_name character Player's first name.
family_name character Player's family / last name.
not_playing_reason character Not playing reason.
not_playing_description character Not playing description.

home_team_linescores

col_name types description
period integer Period of the game (1-4 quarters; 5+ for OT).
period_type character Period type.
score integer Final score.

away_team_linescores

col_name types description
period integer Period of the game (1-4 quarters; 5+ for OT).
period_type character Period type.
score integer Final score.

Author(s)

Saiem Gilani


Get WNBA Stats API Live play-by-play

Description

Get WNBA Stats API Live play-by-play

Get WNBA Stats API Live play-by-play

Usage

wnba_live_pbp(game_id, ...)

Arguments

game_id

Game ID

...

Additional arguments passed to an underlying function like httr.

Details

  wnba_live_pbp(game_id = "1022200034")

Value

Returns a data frame: PlayByPlay

col_name types description
event_num integer Sequential event number within the game (V2 PBP).
clock character Game clock value.
time_actual character Time actual.
period integer Period of the game (1-4 quarters; 5+ for OT).
period_type character Period type.
action_type character Action type label (e.g. 'Made Shot', 'Substitution').
sub_type character Action sub-type label.
qualifiers list Qualifiers.
player1_id integer V2 PBP primary player ID (e.g. shooter / fouler).
x numeric X.
y numeric Y.
offense_team_id integer Unique identifier for offense team.
home_score character Home team score at the time of the play.
away_score character Away team score at the time of the play.
edited character Edited.
order integer Display order within the result set.
x_legacy integer V2-format X coordinate (preserved for V3-to-V2 compatibility).
y_legacy integer V2-format Y coordinate (preserved for V3-to-V2 compatibility).
is_field_goal integer 1 if the action was a field goal; 0 otherwise.
side character Side label (e.g. 'home', 'away', or 'overUnder').
description character Long-form description text.
person_ids_filter list Person ids filter.
team_id integer Unique team identifier.
team_tricode character Three-letter team code (e.g. 'LAS' / 'NYL').
descriptor character Descriptor.
jump_ball_recovered_name character Jump ball recovered name.
jump_ball_recoverd_person_id integer Unique identifier for jump ball recoverd person.
player_name character Player name.
player_name_i character Player name i.
jump_ball_won_player_name character Jump ball won player name.
jump_ball_won_person_id integer Unique identifier for jump ball won person.
jump_ball_lost_player_name character Jump ball lost player name.
jump_ball_lost_person_id integer Unique identifier for jump ball lost person.
shot_distance numeric Shot distance from the basket, in feet.
shot_result character Shot result ('Made' / 'Missed').
shot_action_number integer Shot action number.
rebound_total integer Rebound total.
rebound_defensive_total integer Rebound defensive total.
rebound_offensive_total integer Rebound offensive total.
turnover_total integer Turnover total.
steal_player_name character Steal player name.
steal_person_id integer Unique identifier for steal person.
points_total integer Running total of points scored.
assist_player_name_initial character Assist player name initial.
assist_person_id integer Unique identifier for assist person.
assist_total integer Assist total.
official_id integer Unique official / referee identifier.
foul_personal_total integer Foul personal total.
foul_technical_total integer Foul technical total.
foul_drawn_player_name character Foul drawn player name.
foul_drawn_person_id integer Unique identifier for foul drawn person.
block_player_name character Block player name.
block_person_id integer Unique identifier for block person.
value character Numeric or string value field.
player2_id integer V2 PBP secondary player ID (e.g. assister / fouled-by).
player3_id integer V2 PBP tertiary player ID (e.g. blocker).

Author(s)

Saiem Gilani

See Also

Other WNBA PBP Functions: wnba_data_pbp(), wnba_pbp(), wnba_pbps(), wnba_playbyplayv3()

Other WNBA Live Functions: wnba_todays_scoreboard()


Get WNBA Stats API play-by-play

Description

Get WNBA Stats API play-by-play

Get WNBA Stats API play-by-play

Usage

wnba_pbp(game_id, on_court = TRUE, version = "v3", p = NULL, ...)

Arguments

game_id

Game ID

on_court

IF TRUE will be added ID of players on court

version

Play-by-play version - "v3" (default) or "v2". V3 returns richer data with shot coordinates, shot values, and V3 action types. V2 is available from 2016-17 onwards.

p

Progress bar

...

Additional arguments passed to an underlying function like httr.

Details

 wnba_pbp(game_id = "1022200034", on_court = TRUE)

Value

Returns a data frame: PlayByPlay

col_name types description
game_id character Unique game identifier.
event_num character Sequential event number within the game (V2 PBP).
event_type character Event / play type code (V2 PBP).
event_action_type character Numeric event-action-type code (V2 PBP).
period numeric Period of the game (1-4 quarters; 5+ for OT).
minute_game numeric Minute game.
time_remaining numeric Time remaining.
wc_time_string character Wc time string.
time_quarter character Time quarter.
minute_remaining_quarter numeric Minute remaining quarter.
seconds_remaining_quarter numeric Seconds remaining quarter.
home_description character Home team's description.
neutral_description character Neutral description.
visitor_description character Visitor description.
score character Final score.
away_score numeric Away team score at the time of the play.
home_score numeric Home team score at the time of the play.
score_margin character Score margin.
person1type character Person1type.
player1_id character V2 PBP primary player ID (e.g. shooter / fouler).
player1_name character V2 PBP primary player name.
player1_team_id character Team ID of player1.
player1_team_city character Player1 team city.
player1_team_nickname character Player1 team nickname.
player1_team_abbreviation character Player1 team abbreviation.
person2type character Person2type.
player2_id character V2 PBP secondary player ID (e.g. assister / fouled-by).
player2_name character V2 PBP secondary player name.
player2_team_id character Team ID of player2.
player2_team_city character Player2 team city.
player2_team_nickname character Player2 team nickname.
player2_team_abbreviation character Player2 team abbreviation.
person3type character Person3type.
player3_id character V2 PBP tertiary player ID (e.g. blocker).
player3_name character V2 PBP tertiary player name.
player3_team_id character Team ID of player3.
player3_team_city character Player3 team city.
player3_team_nickname character Player3 team nickname.
player3_team_abbreviation character Player3 team abbreviation.
video_available_flag character Video available flag.
team_leading character Team leading.

See Also

Other WNBA PBP Functions: wnba_data_pbp(), wnba_live_pbp(), wnba_pbps(), wnba_playbyplayv3()


Get WNBA Stats API play-by-play (Multiple Games)

Description

Get WNBA Stats API play-by-play (Multiple Games)

Get WNBA Stats API play-by-play (Multiple Games)

Usage

wnba_pbps(
  game_ids = NULL,
  on_court = TRUE,
  version = "v3",
  nest_data = FALSE,
  ...
)

Arguments

game_ids

Game IDs

on_court

IF TRUE will be added ID of players on court

version

Play-by-play version - "v3" (default) or "v2". V3 returns richer data with shot coordinates, shot values, and V3 action types. V2 is available from 2016-17 onwards.

nest_data

If TRUE returns nested data by game

...

Additional arguments passed to an underlying function like httr.

Details

y <- c("1022200034", "1022200035" )

wnba_pbps(game_ids = y, version = "v2")

Value

Returns a data frame: PlayByPlay

col_name types description
game_id character Unique game identifier.
event_num character Sequential event number within the game (V2 PBP).
event_type character Event / play type code (V2 PBP).
event_action_type character Numeric event-action-type code (V2 PBP).
period numeric Period of the game (1-4 quarters; 5+ for OT).
minute_game numeric Minute game.
time_remaining numeric Time remaining.
wc_time_string character Wc time string.
time_quarter character Time quarter.
minute_remaining_quarter numeric Minute remaining quarter.
seconds_remaining_quarter numeric Seconds remaining quarter.
home_description character Home team's description.
neutral_description character Neutral description.
visitor_description character Visitor description.
score character Final score.
away_score numeric Away team score at the time of the play.
home_score numeric Home team score at the time of the play.
score_margin character Score margin.
person1type character Person1type.
player1_id character V2 PBP primary player ID (e.g. shooter / fouler).
player1_name character V2 PBP primary player name.
player1_team_id character Team ID of player1.
player1_team_city character Player1 team city.
player1_team_nickname character Player1 team nickname.
player1_team_abbreviation character Player1 team abbreviation.
person2type character Person2type.
player2_id character V2 PBP secondary player ID (e.g. assister / fouled-by).
player2_name character V2 PBP secondary player name.
player2_team_id character Team ID of player2.
player2_team_city character Player2 team city.
player2_team_nickname character Player2 team nickname.
player2_team_abbreviation character Player2 team abbreviation.
person3type character Person3type.
player3_id character V2 PBP tertiary player ID (e.g. blocker).
player3_name character V2 PBP tertiary player name.
player3_team_id character Team ID of player3.
player3_team_city character Player3 team city.
player3_team_nickname character Player3 team nickname.
player3_team_abbreviation character Player3 team abbreviation.
video_available_flag character Video available flag.
team_leading character Team leading.
away_player1 numeric Away team's player1.
away_player2 numeric Away team's player2.
away_player3 numeric Away team's player3.
away_player4 numeric Away team's player4.
away_player5 numeric Away team's player5.
home_player1 numeric Home team's player1.
home_player2 numeric Home team's player2.
home_player3 numeric Home team's player3.
home_player4 numeric Home team's player4.
home_player5 numeric Home team's player5.

Author(s)

Jason Lee

See Also

Other WNBA PBP Functions: wnba_data_pbp(), wnba_live_pbp(), wnba_pbp(), wnba_playbyplayv3()


Get WNBA Stats API Play-by-Play V3

Description

Get WNBA Stats API Play-by-Play V3

Get WNBA Stats API Play-by-Play V3

Usage

wnba_playbyplayv3(game_id, start_period = 0, end_period = 0, ...)

Arguments

game_id

Game ID - 10-digit zero-padded ID (e.g., '1022200034')

start_period

Start period filter (default: 0 = all periods).

end_period

End period filter (default: 0 = all periods).

...

Additional arguments passed to an underlying function like httr.

Details

 wnba_playbyplayv3(game_id = "1022200034")

Value

Returns a named list of data frames: PlayByPlay, AvailableVideo

PlayByPlay

col_name types description
game_id character Unique game identifier.
action_number integer Sequential action number within a game (V3 PBP).
clock character Game clock value.
period integer Period of the game (1-4 quarters; 5+ for OT).
team_id integer Unique team identifier.
team_tricode character Three-letter team code (e.g. 'LAS' / 'NYL').
person_id integer Unique player identifier (V3 endpoints).
player_name character Player name.
player_name_i character Player name i.
x_legacy integer V2-format X coordinate (preserved for V3-to-V2 compatibility).
y_legacy integer V2-format Y coordinate (preserved for V3-to-V2 compatibility).
shot_distance numeric Shot distance from the basket, in feet.
shot_result character Shot result ('Made' / 'Missed').
is_field_goal integer 1 if the action was a field goal; 0 otherwise.
score_home character Score home.
score_away character Score away.
points_total integer Running total of points scored.
location character Filter results by game location.
description character Long-form description text.
action_type character Action type label (e.g. 'Made Shot', 'Substitution').
sub_type character Action sub-type label.
video_available integer Video available.
shot_value integer Point value of the shot (2 or 3).
action_id integer Unique action identifier within a game (V3 PBP).

AvailableVideo

col_name types description
video_available integer Video available.

Author(s)

Saiem Gilani

See Also

Other WNBA PBP Functions: wnba_data_pbp(), wnba_live_pbp(), wnba_pbp(), wnba_pbps()


Get WNBA Stats API Player Awards

Description

Get WNBA Stats API Player Awards

Get WNBA Stats API Player Awards

Usage

wnba_playerawards(player_id, ...)

Arguments

player_id

Player ID

...

Additional arguments passed to an underlying function like httr.

Details

Player Awards

 wnba_playerawards(player_id = '1628932')

Value

Return a named list of data frames: PlayerAwards

PlayerAwards

col_name types description
PERSON_ID character Unique player identifier (V3 endpoints).
FIRST_NAME character Player's first name.
LAST_NAME character Player's last name.
TEAM character Team-side label or team identifier.
DESCRIPTION character Long-form description text.
ALL_WNBA_TEAM_NUMBER character
SEASON character Season identifier (4-digit year or 'YYYY-YY' string).
MONTH character Month number.
WEEK character Week number within the season.
CONFERENCE character Filter players or teams by conference.
TYPE character Record type / category.
SUBTYPE1 character
SUBTYPE2 character
SUBTYPE3 character

Author(s)

Saiem Gilani

See Also

Other WNBA Player Functions: wnba_infographicfanduelplayer(), wnba_leaguedashplayerbiostats(), wnba_leaguedashplayerclutch(), wnba_leaguedashplayershotlocations(), wnba_leaguedashplayerstats(), wnba_leagueplayerondetails(), wnba_leagueseasonmatchups(), wnba_playercareerbycollege(), wnba_playercareerbycollegerollup(), wnba_playercareerstats(), wnba_playercompare(), wnba_playerdashboardbyclutch(), wnba_playerdashboardbygamesplits(), wnba_playerdashboardbygeneralsplits(), wnba_playerdashboardbylastngames(), wnba_playerdashboardbyopponent(), wnba_playerdashboardbyshootingsplits(), wnba_playerdashboardbyteamperformance(), wnba_playerdashboardbyyearoveryear(), wnba_playerestimatedmetrics(), wnba_playerfantasyprofile(), wnba_playerfantasyprofilebargraph(), wnba_playergamelog(), wnba_playergamelogs(), wnba_playergamestreakfinder(), wnba_playerheadshot(), wnba_playerindex(), wnba_playernextngames(), wnba_playerprofilev2(), wnba_playervsplayer()


Get WNBA Stats API Player Career By College

Description

Get WNBA Stats API Player Career By College

Get WNBA Stats API Player Career By College

Usage

wnba_playercareerbycollege(
  college = "Florida State",
  league_id = "10",
  per_mode = "Totals",
  season = most_recent_wnba_season() - 1,
  season_type = "Regular Season",
  ...
)

Arguments

college

College Name

league_id

League - default: '00'. Other options include '10': WWNBA, '20': G-League

per_mode

Per Mode - PerGame, Totals

season

Season - format 2020-21

season_type

Season Type - Regular Season, Playoffs, All-Star

...

Additional arguments passed to an underlying function like httr.

Details

  wnba_playercareerbycollege(college = 'Florida State', per_mode = 'PerGame')

Value

Return a named list of data frames: PlayerCareerByCollege

PlayerCareerByCollege

col_name types description
PLAYER_ID character Unique player identifier.
PLAYER_NAME character Player name.
COLLEGE character College or school attended.
GP character Games played.
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
PF character Personal fouls.
PTS character Points scored.

Author(s)

Saiem Gilani

See Also

Other WNBA Player Functions: wnba_infographicfanduelplayer(), wnba_leaguedashplayerbiostats(), wnba_leaguedashplayerclutch(), wnba_leaguedashplayershotlocations(), wnba_leaguedashplayerstats(), wnba_leagueplayerondetails(), wnba_leagueseasonmatchups(), wnba_playerawards(), wnba_playercareerbycollegerollup(), wnba_playercareerstats(), wnba_playercompare(), wnba_playerdashboardbyclutch(), wnba_playerdashboardbygamesplits(), wnba_playerdashboardbygeneralsplits(), wnba_playerdashboardbylastngames(), wnba_playerdashboardbyopponent(), wnba_playerdashboardbyshootingsplits(), wnba_playerdashboardbyteamperformance(), wnba_playerdashboardbyyearoveryear(), wnba_playerestimatedmetrics(), wnba_playerfantasyprofile(), wnba_playerfantasyprofilebargraph(), wnba_playergamelog(), wnba_playergamelogs(), wnba_playergamestreakfinder(), wnba_playerheadshot(), wnba_playerindex(), wnba_playernextngames(), wnba_playerprofilev2(), wnba_playervsplayer()


Get WNBA Stats API Player Career By College Rollup

Description

Get WNBA Stats API Player Career By College Rollup

Get WNBA Stats API Player Career By College Rollup

Usage

wnba_playercareerbycollegerollup(
  league_id = "10",
  per_mode = "Totals",
  season = most_recent_wnba_season() - 1,
  season_type = "Regular Season",
  ...
)

Arguments

league_id

League - default: '00'. Other options include '10': WWNBA, '20': G-League

per_mode

Per Mode - PerGame, Totals

season

Season - format 2020-21

season_type

Season Type - Regular Season, Playoffs, All-Star

...

Additional arguments passed to an underlying function like httr.

Details

 wnba_playercareerbycollegerollup(per_mode = 'Totals')

Value

Return a named list of data frames: East, Midwest, South, West

East

col_name types description
REGION character Region label.
SEED character Tournament seed.
COLLEGE character College or school attended.
PLAYERS character
GP character Games played.
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
STL character Steals.
BLK character Blocks.
TOV character Turnovers.
PF character Personal fouls.
PTS character Points scored.

South

col_name types description
REGION character Region label.
SEED character Tournament seed.
COLLEGE character College or school attended.
PLAYERS character
GP character Games played.
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
STL character Steals.
BLK character Blocks.
TOV character Turnovers.
PF character Personal fouls.
PTS character Points scored.

Midwest

col_name types description
REGION character Region label.
SEED character Tournament seed.
COLLEGE character College or school attended.
PLAYERS character
GP character Games played.
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
STL character Steals.
BLK character Blocks.
TOV character Turnovers.
PF character Personal fouls.
PTS character Points scored.

West

col_name types description
REGION character Region label.
SEED character Tournament seed.
COLLEGE character College or school attended.
PLAYERS character
GP character Games played.
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
STL character Steals.
BLK character Blocks.
TOV character Turnovers.
PF character Personal fouls.
PTS character Points scored.

Author(s)

Saiem Gilani

See Also

Other WNBA Player Functions: wnba_infographicfanduelplayer(), wnba_leaguedashplayerbiostats(), wnba_leaguedashplayerclutch(), wnba_leaguedashplayershotlocations(), wnba_leaguedashplayerstats(), wnba_leagueplayerondetails(), wnba_leagueseasonmatchups(), wnba_playerawards(), wnba_playercareerbycollege(), wnba_playercareerstats(), wnba_playercompare(), wnba_playerdashboardbyclutch(), wnba_playerdashboardbygamesplits(), wnba_playerdashboardbygeneralsplits(), wnba_playerdashboardbylastngames(), wnba_playerdashboardbyopponent(), wnba_playerdashboardbyshootingsplits(), wnba_playerdashboardbyteamperformance(), wnba_playerdashboardbyyearoveryear(), wnba_playerestimatedmetrics(), wnba_playerfantasyprofile(), wnba_playerfantasyprofilebargraph(), wnba_playergamelog(), wnba_playergamelogs(), wnba_playergamestreakfinder(), wnba_playerheadshot(), wnba_playerindex(), wnba_playernextngames(), wnba_playerprofilev2(), wnba_playervsplayer()


Get WNBA Stats API Player Career Stats

Description

Get WNBA Stats API Player Career Stats

Get WNBA Stats API Player Career Stats

Usage

wnba_playercareerstats(
  league_id = "10",
  per_mode = "Totals",
  player_id = "1628932",
  ...
)

Arguments

league_id

League - default: '00'. Other options include '10': WWNBA, '20': G-League

per_mode

Per Mode - PerGame, Totals

player_id

Player ID

...

Additional arguments passed to an underlying function like httr.

Details

  wnba_playercareerstats(player_id = '1628932')

Value

Return a named list of data frames: CareerTotalsAllStarSeason, CareerTotalsCollegeSeason, CareerTotalsPostSeason, CareerTotalsRegularSeason, SeasonRankingsPostSeason, SeasonRankingsRegularSeason, SeasonTotalsAllStarSeason, SeasonTotalsCollegeSeason, SeasonTotalsPostSeason, SeasonTotalsRegularSeason

SeasonTotalsRegularSeason

col_name types description
PLAYER_ID character Unique player identifier.
SEASON_ID character Unique season identifier.
LEAGUE_ID character League identifier ('10' = WNBA).
TEAM_ID character Unique team identifier.
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
PLAYER_AGE character
GP character Games played.
GS character Games started.
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
STL character Steals.
BLK character Blocks.
TOV character Turnovers.
PF character Personal fouls.
PTS character Points scored.

CareerTotalsRegularSeason

col_name types description
PLAYER_ID character Unique player identifier.
LEAGUE_ID character League identifier ('10' = WNBA).
Team_ID character Unique team identifier.
GP character Games played.
GS character Games started.
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
STL character Steals.
BLK character Blocks.
TOV character Turnovers.
PF character Personal fouls.
PTS character Points scored.

SeasonTotalsPostSeason

col_name types description
PLAYER_ID character Unique player identifier.
SEASON_ID character Unique season identifier.
LEAGUE_ID character League identifier ('10' = WNBA).
TEAM_ID character Unique team identifier.
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
PLAYER_AGE character
GP character Games played.
GS character Games started.
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
STL character Steals.
BLK character Blocks.
TOV character Turnovers.
PF character Personal fouls.
PTS character Points scored.

CareerTotalsPostSeason

col_name types description
PLAYER_ID character Unique player identifier.
LEAGUE_ID character League identifier ('10' = WNBA).
Team_ID character Unique team identifier.
GP character Games played.
GS character Games started.
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
STL character Steals.
BLK character Blocks.
TOV character Turnovers.
PF character Personal fouls.
PTS character Points scored.

SeasonTotalsAllStarSeason

col_name types description
PLAYER_ID character Unique player identifier.
SEASON_ID character Unique season identifier.
LEAGUE_ID character League identifier ('10' = WNBA).
TEAM_ID character Unique team identifier.
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
PLAYER_AGE character
GP character Games played.
GS character Games started.
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
STL character Steals.
BLK character Blocks.
TOV character Turnovers.
PF character Personal fouls.
PTS character Points scored.

CareerTotalsAllStarSeason

col_name types description
PLAYER_ID character Unique player identifier.
LEAGUE_ID character League identifier ('10' = WNBA).
Team_ID character Unique team identifier.
GP character Games played.
GS character Games started.
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
STL character Steals.
BLK character Blocks.
TOV character Turnovers.
PF character Personal fouls.
PTS character Points scored.

SeasonTotalsCollegeSeason

CareerTotalsCollegeSeason

SeasonTotalsShowcaseSeason

CareerTotalsShowcaseSeason

SeasonRankingsRegularSeason

col_name types description
PLAYER_ID character Unique player identifier.
SEASON_ID character Unique season identifier.
LEAGUE_ID character League identifier ('10' = WNBA).
TEAM_ID character Unique team identifier.
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
PLAYER_AGE character
GP character Games played.
GS character Games started.
RANK_MIN character
RANK_FGM character
RANK_FGA character
RANK_FG_PCT character
RANK_FG3M character
RANK_FG3A character
RANK_FG3_PCT character
RANK_FTM character
RANK_FTA character
RANK_FT_PCT character
RANK_OREB character
RANK_DREB character
RANK_REB character
RANK_AST character
RANK_STL character
RANK_BLK character
RANK_TOV character
RANK_PTS character
RANK_EFF character

SeasonRankingsPostSeason

col_name types description
PLAYER_ID character Unique player identifier.
SEASON_ID character Unique season identifier.
LEAGUE_ID character League identifier ('10' = WNBA).
TEAM_ID character Unique team identifier.
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
PLAYER_AGE character
GP character Games played.
GS character Games started.
RANK_MIN character
RANK_FGM character
RANK_FGA character
RANK_FG_PCT character
RANK_FG3M character
RANK_FG3A character
RANK_FG3_PCT character
RANK_FTM character
RANK_FTA character
RANK_FT_PCT character
RANK_OREB character
RANK_DREB character
RANK_REB character
RANK_AST character
RANK_STL character
RANK_BLK character
RANK_TOV character
RANK_PTS character
RANK_EFF character

Author(s)

Saiem Gilani

See Also

Other WNBA Player Functions: wnba_infographicfanduelplayer(), wnba_leaguedashplayerbiostats(), wnba_leaguedashplayerclutch(), wnba_leaguedashplayershotlocations(), wnba_leaguedashplayerstats(), wnba_leagueplayerondetails(), wnba_leagueseasonmatchups(), wnba_playerawards(), wnba_playercareerbycollege(), wnba_playercareerbycollegerollup(), wnba_playercompare(), wnba_playerdashboardbyclutch(), wnba_playerdashboardbygamesplits(), wnba_playerdashboardbygeneralsplits(), wnba_playerdashboardbylastngames(), wnba_playerdashboardbyopponent(), wnba_playerdashboardbyshootingsplits(), wnba_playerdashboardbyteamperformance(), wnba_playerdashboardbyyearoveryear(), wnba_playerestimatedmetrics(), wnba_playerfantasyprofile(), wnba_playerfantasyprofilebargraph(), wnba_playergamelog(), wnba_playergamelogs(), wnba_playergamestreakfinder(), wnba_playerheadshot(), wnba_playerindex(), wnba_playernextngames(), wnba_playerprofilev2(), wnba_playervsplayer()


Get WNBA Stats API Player Compare

Description

Get WNBA Stats API Player Compare

Get WNBA Stats API Player Compare

Usage

wnba_playercompare(
  conference = "",
  date_from = "",
  date_to = "",
  game_segment = "",
  last_n_games = 0,
  league_id = "10",
  location = "",
  measure_type = "Base",
  month = 0,
  opponent_team_id = 0,
  outcome = "",
  pace_adjust = "N",
  per_mode = "Totals",
  period = 0,
  player_id_list = "100720,202250,204319,1627668,1628931",
  plus_minus = "N",
  rank = "N",
  season = most_recent_wnba_season(),
  season_segment = "",
  season_type = "Regular Season",
  shot_clock_range = "",
  vs_conference = "",
  vs_division = "",
  vs_player_id_list = "202252,203399,1631022,1628878,204333",
  ...
)

Arguments

conference

conference

date_from

date_from

date_to

date_to

game_segment

game_segment

last_n_games

last_n_games

league_id

League - default: '00'. Other options include '10': WWNBA, '20': G-League

location

location

measure_type

measure_type

month

month

opponent_team_id

opponent_team_id

outcome

outcome

pace_adjust

pace_adjust

per_mode

per_mode

period

period

player_id_list

Player ID

plus_minus

plus_minus

rank

rank

season

Season - format 2020-21

season_segment

season_segment

season_type

Season Type - Regular Season, Playoffs, All-Star

shot_clock_range

shot_clock_range

vs_conference

vs_conference

vs_division

vs_division

vs_player_id_list

vs_player_id_list

...

Additional arguments passed to an underlying function like httr.

Details

 wnba_playercompare(player_id_list = '100720,202250,204319,1627668,1628931', vs_player_id_list = '202252,203399,1631022,1628878,204333')

Value

Return a named list of data frames: Individual, OverallCompare

OverallCompare

col_name types description
GROUP_SET character
DESCRIPTION character Long-form description text.
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.

Individual

col_name types description
GROUP_SET character
DESCRIPTION character Long-form description text.
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.

Author(s)

Saiem Gilani

See Also

Other WNBA Player Functions: wnba_infographicfanduelplayer(), wnba_leaguedashplayerbiostats(), wnba_leaguedashplayerclutch(), wnba_leaguedashplayershotlocations(), wnba_leaguedashplayerstats(), wnba_leagueplayerondetails(), wnba_leagueseasonmatchups(), wnba_playerawards(), wnba_playercareerbycollege(), wnba_playercareerbycollegerollup(), wnba_playercareerstats(), wnba_playerdashboardbyclutch(), wnba_playerdashboardbygamesplits(), wnba_playerdashboardbygeneralsplits(), wnba_playerdashboardbylastngames(), wnba_playerdashboardbyopponent(), wnba_playerdashboardbyshootingsplits(), wnba_playerdashboardbyteamperformance(), wnba_playerdashboardbyyearoveryear(), wnba_playerestimatedmetrics(), wnba_playerfantasyprofile(), wnba_playerfantasyprofilebargraph(), wnba_playergamelog(), wnba_playergamelogs(), wnba_playergamestreakfinder(), wnba_playerheadshot(), wnba_playerindex(), wnba_playernextngames(), wnba_playerprofilev2(), wnba_playervsplayer()


Get WNBA Stats API Player Dashboard by Clutch Splits

Description

Get WNBA Stats API Player Dashboard by Clutch Splits

Get WNBA Stats API Player Dashboard by Clutch Splits

Usage

wnba_playerdashboardbyclutch(
  date_from = "",
  date_to = "",
  game_segment = "",
  last_n_games = 0,
  league_id = "10",
  location = "",
  measure_type = "Base",
  month = 0,
  opponent_team_id = 0,
  outcome = "",
  po_round = "",
  pace_adjust = "N",
  per_mode = "Totals",
  period = 0,
  player_id = "1628932",
  plus_minus = "N",
  rank = "N",
  season = most_recent_wnba_season() - 1,
  season_segment = "",
  season_type = "Regular Season",
  shot_clock_range = "",
  vs_conference = "",
  vs_division = "",
  ...
)

Arguments

date_from

date_from

date_to

date_to

game_segment

game_segment

last_n_games

last_n_games

league_id

league_id

location

location

measure_type

measure_type

month

month

opponent_team_id

opponent_team_id

outcome

outcome

po_round

po_round

pace_adjust

pace_adjust

per_mode

per_mode

period

period

player_id

player_id

plus_minus

plus_minus

rank

rank

season

season

season_segment

season_segment

season_type

season_type

shot_clock_range

shot_clock_range

vs_conference

vs_conference

vs_division

vs_division

...

Additional arguments passed to an underlying function like httr.

Details

 wnba_playerdashboardbyclutch(player_id = '1628932', season = most_recent_wnba_season() - 1)

Value

Return a named list of data frames: Last10Sec3Point2PlayerDashboard, Last10Sec3PointPlayerDashboard, Last1Min5PointPlayerDashboard, Last1MinPlusMinus5PointPlayerDashboard, Last30Sec3Point2PlayerDashboard, Last30Sec3PointPlayerDashboard, Last3Min5PointPlayerDashboard, Last3MinPlusMinus5PointPlayerDashboard, Last5Min5PointPlayerDashboard, Last5MinPlusMinus5PointPlayerDashboard, OverallPlayerDashboard

OverallPlayerDashboard

col_name types description
GROUP_SET character
GROUP_VALUE character
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
NBA_FANTASY_PTS character
DD2 character
TD3 character
WNBA_FANTASY_PTS character
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character
NBA_FANTASY_PTS_RANK character
DD2_RANK character
TD3_RANK character
WNBA_FANTASY_PTS_RANK character

Last5Min5PointPlayerDashboard

col_name types description
GROUP_SET character
GROUP_VALUE character
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
NBA_FANTASY_PTS character
DD2 character
TD3 character
WNBA_FANTASY_PTS character
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character
NBA_FANTASY_PTS_RANK character
DD2_RANK character
TD3_RANK character
WNBA_FANTASY_PTS_RANK character

Last3Min5PointPlayerDashboard

col_name types description
GROUP_SET character
GROUP_VALUE character
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
NBA_FANTASY_PTS character
DD2 character
TD3 character
WNBA_FANTASY_PTS character
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character
NBA_FANTASY_PTS_RANK character
DD2_RANK character
TD3_RANK character
WNBA_FANTASY_PTS_RANK character

Last1Min5PointPlayerDashboard

col_name types description
GROUP_SET character
GROUP_VALUE character
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
NBA_FANTASY_PTS character
DD2 character
TD3 character
WNBA_FANTASY_PTS character
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character
NBA_FANTASY_PTS_RANK character
DD2_RANK character
TD3_RANK character
WNBA_FANTASY_PTS_RANK character

Last30Sec3PointPlayerDashboard

col_name types description
GROUP_SET character
GROUP_VALUE character
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
NBA_FANTASY_PTS character
DD2 character
TD3 character
WNBA_FANTASY_PTS character
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character
NBA_FANTASY_PTS_RANK character
DD2_RANK character
TD3_RANK character
WNBA_FANTASY_PTS_RANK character

Last10Sec3PointPlayerDashboard

col_name types description
GROUP_SET character
GROUP_VALUE character
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
NBA_FANTASY_PTS character
DD2 character
TD3 character
WNBA_FANTASY_PTS character
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character
NBA_FANTASY_PTS_RANK character
DD2_RANK character
TD3_RANK character
WNBA_FANTASY_PTS_RANK character

Last5MinPlusMinus5PointPlayerDashboard

col_name types description
GROUP_SET character
GROUP_VALUE character
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
NBA_FANTASY_PTS character
DD2 character
TD3 character
WNBA_FANTASY_PTS character
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character
NBA_FANTASY_PTS_RANK character
DD2_RANK character
TD3_RANK character
WNBA_FANTASY_PTS_RANK character

Last3MinPlusMinus5PointPlayerDashboard

col_name types description
GROUP_SET character
GROUP_VALUE character
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
NBA_FANTASY_PTS character
DD2 character
TD3 character
WNBA_FANTASY_PTS character
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character
NBA_FANTASY_PTS_RANK character
DD2_RANK character
TD3_RANK character
WNBA_FANTASY_PTS_RANK character

Last1MinPlusMinus5PointPlayerDashboard

col_name types description
GROUP_SET character
GROUP_VALUE character
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
NBA_FANTASY_PTS character
DD2 character
TD3 character
WNBA_FANTASY_PTS character
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character
NBA_FANTASY_PTS_RANK character
DD2_RANK character
TD3_RANK character
WNBA_FANTASY_PTS_RANK character

Last30Sec3Point2PlayerDashboard

col_name types description
GROUP_SET character
GROUP_VALUE character
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
NBA_FANTASY_PTS character
DD2 character
TD3 character
WNBA_FANTASY_PTS character
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character
NBA_FANTASY_PTS_RANK character
DD2_RANK character
TD3_RANK character
WNBA_FANTASY_PTS_RANK character

Last10Sec3Point2PlayerDashboard

col_name types description
GROUP_SET character
GROUP_VALUE character
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
NBA_FANTASY_PTS character
DD2 character
TD3 character
WNBA_FANTASY_PTS character
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character
NBA_FANTASY_PTS_RANK character
DD2_RANK character
TD3_RANK character
WNBA_FANTASY_PTS_RANK character

Author(s)

Saiem Gilani

See Also

Other WNBA Player Functions: wnba_infographicfanduelplayer(), wnba_leaguedashplayerbiostats(), wnba_leaguedashplayerclutch(), wnba_leaguedashplayershotlocations(), wnba_leaguedashplayerstats(), wnba_leagueplayerondetails(), wnba_leagueseasonmatchups(), wnba_playerawards(), wnba_playercareerbycollege(), wnba_playercareerbycollegerollup(), wnba_playercareerstats(), wnba_playercompare(), wnba_playerdashboardbygamesplits(), wnba_playerdashboardbygeneralsplits(), wnba_playerdashboardbylastngames(), wnba_playerdashboardbyopponent(), wnba_playerdashboardbyshootingsplits(), wnba_playerdashboardbyteamperformance(), wnba_playerdashboardbyyearoveryear(), wnba_playerestimatedmetrics(), wnba_playerfantasyprofile(), wnba_playerfantasyprofilebargraph(), wnba_playergamelog(), wnba_playergamelogs(), wnba_playergamestreakfinder(), wnba_playerheadshot(), wnba_playerindex(), wnba_playernextngames(), wnba_playerprofilev2(), wnba_playervsplayer()

Other WNBA Clutch Functions: wnba_leaguedashteamclutch(), wnba_teamdashboardbyclutch()


Get WNBA Stats API Player Dashboard by Game Splits

Description

Get WNBA Stats API Player Dashboard by Game Splits

Get WNBA Stats API Player Dashboard by Game Splits

Usage

wnba_playerdashboardbygamesplits(
  date_from = "",
  date_to = "",
  game_segment = "",
  last_n_games = 0,
  league_id = "10",
  location = "",
  measure_type = "Base",
  month = 0,
  opponent_team_id = 0,
  outcome = "",
  po_round = "",
  pace_adjust = "N",
  per_mode = "Totals",
  period = 0,
  player_id = "1628932",
  plus_minus = "N",
  rank = "N",
  season = most_recent_wnba_season() - 1,
  season_segment = "",
  season_type = "Regular Season",
  shot_clock_range = "",
  vs_conference = "",
  vs_division = "",
  ...
)

Arguments

date_from

date_from

date_to

date_to

game_segment

game_segment

last_n_games

last_n_games

league_id

league_id

location

location

measure_type

measure_type

month

month

opponent_team_id

opponent_team_id

outcome

outcome

po_round

po_round

pace_adjust

pace_adjust

per_mode

per_mode

period

period

player_id

player_id

plus_minus

plus_minus

rank

rank

season

season

season_segment

season_segment

season_type

season_type

shot_clock_range

shot_clock_range

vs_conference

vs_conference

vs_division

vs_division

...

Additional arguments passed to an underlying function like httr.

Details

 wnba_playerdashboardbygamesplits(player_id = '1628932', season = most_recent_wnba_season() - 1)

Value

Return a named list of data frames: ByActualMarginPlayerDashboard, ByHalfPlayerDashboard, ByPeriodPlayerDashboard, ByScoreMarginPlayerDashboard, OverallPlayerDashboard

OverallPlayerDashboard

col_name types description
GROUP_SET character
GROUP_VALUE character
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
NBA_FANTASY_PTS character
DD2 character
TD3 character
WNBA_FANTASY_PTS character
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character
NBA_FANTASY_PTS_RANK character
DD2_RANK character
TD3_RANK character
WNBA_FANTASY_PTS_RANK character

ByHalfPlayerDashboard

col_name types description
GROUP_SET character
GROUP_VALUE character
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
NBA_FANTASY_PTS character
DD2 character
TD3 character
WNBA_FANTASY_PTS character
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character
NBA_FANTASY_PTS_RANK character
DD2_RANK character
TD3_RANK character
WNBA_FANTASY_PTS_RANK character

ByPeriodPlayerDashboard

col_name types description
GROUP_SET character
GROUP_VALUE character
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
NBA_FANTASY_PTS character
DD2 character
TD3 character
WNBA_FANTASY_PTS character
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character
NBA_FANTASY_PTS_RANK character
DD2_RANK character
TD3_RANK character
WNBA_FANTASY_PTS_RANK character

ByScoreMarginPlayerDashboard

col_name types description
GROUP_SET character
GROUP_VALUE character
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
NBA_FANTASY_PTS character
DD2 character
TD3 character
WNBA_FANTASY_PTS character
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character
NBA_FANTASY_PTS_RANK character
DD2_RANK character
TD3_RANK character
WNBA_FANTASY_PTS_RANK character

ByActualMarginPlayerDashboard

col_name types description
GROUP_SET character
GROUP_VALUE character
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
NBA_FANTASY_PTS character
DD2 character
TD3 character
WNBA_FANTASY_PTS character
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character
NBA_FANTASY_PTS_RANK character
DD2_RANK character
TD3_RANK character
WNBA_FANTASY_PTS_RANK character

Author(s)

Saiem Gilani

See Also

Other WNBA Player Functions: wnba_infographicfanduelplayer(), wnba_leaguedashplayerbiostats(), wnba_leaguedashplayerclutch(), wnba_leaguedashplayershotlocations(), wnba_leaguedashplayerstats(), wnba_leagueplayerondetails(), wnba_leagueseasonmatchups(), wnba_playerawards(), wnba_playercareerbycollege(), wnba_playercareerbycollegerollup(), wnba_playercareerstats(), wnba_playercompare(), wnba_playerdashboardbyclutch(), wnba_playerdashboardbygeneralsplits(), wnba_playerdashboardbylastngames(), wnba_playerdashboardbyopponent(), wnba_playerdashboardbyshootingsplits(), wnba_playerdashboardbyteamperformance(), wnba_playerdashboardbyyearoveryear(), wnba_playerestimatedmetrics(), wnba_playerfantasyprofile(), wnba_playerfantasyprofilebargraph(), wnba_playergamelog(), wnba_playergamelogs(), wnba_playergamestreakfinder(), wnba_playerheadshot(), wnba_playerindex(), wnba_playernextngames(), wnba_playerprofilev2(), wnba_playervsplayer()


Get WNBA Stats API Player Dashboard by General Splits

Description

Get WNBA Stats API Player Dashboard by General Splits

Get WNBA Stats API Player Dashboard by General Splits

Usage

wnba_playerdashboardbygeneralsplits(
  date_from = "",
  date_to = "",
  game_segment = "",
  last_n_games = 0,
  league_id = "10",
  location = "",
  measure_type = "Base",
  month = 0,
  opponent_team_id = 0,
  outcome = "",
  po_round = "",
  pace_adjust = "N",
  per_mode = "Totals",
  period = 0,
  player_id = "1628932",
  plus_minus = "N",
  rank = "N",
  season = most_recent_wnba_season() - 1,
  season_segment = "",
  season_type = "Regular Season",
  shot_clock_range = "",
  vs_conference = "",
  vs_division = "",
  ...
)

Arguments

date_from

date_from

date_to

date_to

game_segment

game_segment

last_n_games

last_n_games

league_id

league_id

location

location

measure_type

measure_type

month

month

opponent_team_id

opponent_team_id

outcome

outcome

po_round

po_round

pace_adjust

pace_adjust

per_mode

per_mode

period

period

player_id

player_id

plus_minus

plus_minus

rank

rank

season

season

season_segment

season_segment

season_type

season_type

shot_clock_range

shot_clock_range

vs_conference

vs_conference

vs_division

vs_division

...

Additional arguments passed to an underlying function like httr.

Details

 wnba_playerdashboardbygeneralsplits(player_id = '1628932', season = most_recent_wnba_season() - 1)

Value

Return a named list of data frames: DaysRestPlayerDashboard, LocationPlayerDashboard, MonthPlayerDashboard, OverallPlayerDashboard, PrePostAllStarPlayerDashboard, StartingPosition, WinsLossesPlayerDashboard

OverallPlayerDashboard

col_name types description
GROUP_SET character
GROUP_VALUE character
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
NBA_FANTASY_PTS character
DD2 character
TD3 character
WNBA_FANTASY_PTS character
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character
NBA_FANTASY_PTS_RANK character
DD2_RANK character
TD3_RANK character
WNBA_FANTASY_PTS_RANK character

LocationPlayerDashboard

col_name types description
GROUP_SET character
GROUP_VALUE character
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
NBA_FANTASY_PTS character
DD2 character
TD3 character
WNBA_FANTASY_PTS character
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character
NBA_FANTASY_PTS_RANK character
DD2_RANK character
TD3_RANK character
WNBA_FANTASY_PTS_RANK character

WinsLossesPlayerDashboard

col_name types description
GROUP_SET character
GROUP_VALUE character
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
NBA_FANTASY_PTS character
DD2 character
TD3 character
WNBA_FANTASY_PTS character
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character
NBA_FANTASY_PTS_RANK character
DD2_RANK character
TD3_RANK character
WNBA_FANTASY_PTS_RANK character

MonthPlayerDashboard

col_name types description
GROUP_SET character
GROUP_VALUE character
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
NBA_FANTASY_PTS character
DD2 character
TD3 character
WNBA_FANTASY_PTS character
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character
NBA_FANTASY_PTS_RANK character
DD2_RANK character
TD3_RANK character
WNBA_FANTASY_PTS_RANK character

PrePostAllStarPlayerDashboard

col_name types description
GROUP_SET character
GROUP_VALUE character
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
NBA_FANTASY_PTS character
DD2 character
TD3 character
WNBA_FANTASY_PTS character
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character
NBA_FANTASY_PTS_RANK character
DD2_RANK character
TD3_RANK character
WNBA_FANTASY_PTS_RANK character

StartingPosition

col_name types description
GROUP_SET character
GROUP_VALUE character
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
NBA_FANTASY_PTS character
DD2 character
TD3 character
WNBA_FANTASY_PTS character
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character
NBA_FANTASY_PTS_RANK character
DD2_RANK character
TD3_RANK character
WNBA_FANTASY_PTS_RANK character

DaysRestPlayerDashboard

col_name types description
GROUP_SET character
GROUP_VALUE character
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
NBA_FANTASY_PTS character
DD2 character
TD3 character
WNBA_FANTASY_PTS character
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character
NBA_FANTASY_PTS_RANK character
DD2_RANK character
TD3_RANK character
WNBA_FANTASY_PTS_RANK character

Author(s)

Saiem Gilani

See Also

Other WNBA Player Functions: wnba_infographicfanduelplayer(), wnba_leaguedashplayerbiostats(), wnba_leaguedashplayerclutch(), wnba_leaguedashplayershotlocations(), wnba_leaguedashplayerstats(), wnba_leagueplayerondetails(), wnba_leagueseasonmatchups(), wnba_playerawards(), wnba_playercareerbycollege(), wnba_playercareerbycollegerollup(), wnba_playercareerstats(), wnba_playercompare(), wnba_playerdashboardbyclutch(), wnba_playerdashboardbygamesplits(), wnba_playerdashboardbylastngames(), wnba_playerdashboardbyopponent(), wnba_playerdashboardbyshootingsplits(), wnba_playerdashboardbyteamperformance(), wnba_playerdashboardbyyearoveryear(), wnba_playerestimatedmetrics(), wnba_playerfantasyprofile(), wnba_playerfantasyprofilebargraph(), wnba_playergamelog(), wnba_playergamelogs(), wnba_playergamestreakfinder(), wnba_playerheadshot(), wnba_playerindex(), wnba_playernextngames(), wnba_playerprofilev2(), wnba_playervsplayer()


Get WNBA Stats API Player Dashboard by Last N Games

Description

Get WNBA Stats API Player Dashboard by Last N Games

Get WNBA Stats API Player Dashboard by Last N Games

Usage

wnba_playerdashboardbylastngames(
  date_from = "",
  date_to = "",
  game_segment = "",
  last_n_games = 0,
  league_id = "10",
  location = "",
  measure_type = "Base",
  month = 0,
  opponent_team_id = 0,
  outcome = "",
  po_round = "",
  pace_adjust = "N",
  per_mode = "Totals",
  period = 0,
  player_id = "1628932",
  plus_minus = "N",
  rank = "N",
  season = most_recent_wnba_season() - 1,
  season_segment = "",
  season_type = "Regular Season",
  shot_clock_range = "",
  vs_conference = "",
  vs_division = "",
  ...
)

Arguments

date_from

date_from

date_to

date_to

game_segment

game_segment

last_n_games

last_n_games

league_id

league_id

location

location

measure_type

measure_type

month

month

opponent_team_id

opponent_team_id

outcome

outcome

po_round

po_round

pace_adjust

pace_adjust

per_mode

per_mode

period

period

player_id

player_id

plus_minus

plus_minus

rank

rank

season

season

season_segment

season_segment

season_type

season_type

shot_clock_range

shot_clock_range

vs_conference

vs_conference

vs_division

vs_division

...

Additional arguments passed to an underlying function like httr.

Details

 wnba_playerdashboardbylastngames(player_id = '1628932', season = most_recent_wnba_season() - 1)

Value

Return a named list of data frames: GameNumberPlayerDashboard, Last10PlayerDashboard, Last15PlayerDashboard, Last20PlayerDashboard, Last5PlayerDashboard, OverallPlayerDashboard

OverallPlayerDashboard

col_name types description
GROUP_SET character
GROUP_VALUE character
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
NBA_FANTASY_PTS character
DD2 character
TD3 character
WNBA_FANTASY_PTS character
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character
NBA_FANTASY_PTS_RANK character
DD2_RANK character
TD3_RANK character
WNBA_FANTASY_PTS_RANK character

Last5PlayerDashboard

col_name types description
GROUP_SET character
GROUP_VALUE character
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
NBA_FANTASY_PTS character
DD2 character
TD3 character
WNBA_FANTASY_PTS character
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character
NBA_FANTASY_PTS_RANK character
DD2_RANK character
TD3_RANK character
WNBA_FANTASY_PTS_RANK character

Last10PlayerDashboard

col_name types description
GROUP_SET character
GROUP_VALUE character
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
NBA_FANTASY_PTS character
DD2 character
TD3 character
WNBA_FANTASY_PTS character
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character
NBA_FANTASY_PTS_RANK character
DD2_RANK character
TD3_RANK character
WNBA_FANTASY_PTS_RANK character

Last15PlayerDashboard

col_name types description
GROUP_SET character
GROUP_VALUE character
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
NBA_FANTASY_PTS character
DD2 character
TD3 character
WNBA_FANTASY_PTS character
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character
NBA_FANTASY_PTS_RANK character
DD2_RANK character
TD3_RANK character
WNBA_FANTASY_PTS_RANK character

Last20PlayerDashboard

col_name types description
GROUP_SET character
GROUP_VALUE character
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
NBA_FANTASY_PTS character
DD2 character
TD3 character
WNBA_FANTASY_PTS character
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character
NBA_FANTASY_PTS_RANK character
DD2_RANK character
TD3_RANK character
WNBA_FANTASY_PTS_RANK character

GameNumberPlayerDashboard

col_name types description
GROUP_SET character
GROUP_VALUE character
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
NBA_FANTASY_PTS character
DD2 character
TD3 character
WNBA_FANTASY_PTS character
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character
NBA_FANTASY_PTS_RANK character
DD2_RANK character
TD3_RANK character
WNBA_FANTASY_PTS_RANK character

Author(s)

Saiem Gilani

See Also

Other WNBA Player Functions: wnba_infographicfanduelplayer(), wnba_leaguedashplayerbiostats(), wnba_leaguedashplayerclutch(), wnba_leaguedashplayershotlocations(), wnba_leaguedashplayerstats(), wnba_leagueplayerondetails(), wnba_leagueseasonmatchups(), wnba_playerawards(), wnba_playercareerbycollege(), wnba_playercareerbycollegerollup(), wnba_playercareerstats(), wnba_playercompare(), wnba_playerdashboardbyclutch(), wnba_playerdashboardbygamesplits(), wnba_playerdashboardbygeneralsplits(), wnba_playerdashboardbyopponent(), wnba_playerdashboardbyshootingsplits(), wnba_playerdashboardbyteamperformance(), wnba_playerdashboardbyyearoveryear(), wnba_playerestimatedmetrics(), wnba_playerfantasyprofile(), wnba_playerfantasyprofilebargraph(), wnba_playergamelog(), wnba_playergamelogs(), wnba_playergamestreakfinder(), wnba_playerheadshot(), wnba_playerindex(), wnba_playernextngames(), wnba_playerprofilev2(), wnba_playervsplayer()


Get WNBA Stats API Player Dashboard by Opponent

Description

Get WNBA Stats API Player Dashboard by Opponent

Get WNBA Stats API Player Dashboard by Opponent

Usage

wnba_playerdashboardbyopponent(
  date_from = "",
  date_to = "",
  game_segment = "",
  last_n_games = 0,
  league_id = "10",
  location = "",
  measure_type = "Base",
  month = 0,
  opponent_team_id = 0,
  outcome = "",
  po_round = "",
  pace_adjust = "N",
  per_mode = "Totals",
  period = 0,
  player_id = "1628932",
  plus_minus = "N",
  rank = "N",
  season = most_recent_wnba_season() - 1,
  season_segment = "",
  season_type = "Regular Season",
  shot_clock_range = "",
  vs_conference = "",
  vs_division = "",
  ...
)

Arguments

date_from

date_from

date_to

date_to

game_segment

game_segment

last_n_games

last_n_games

league_id

league_id

location

location

measure_type

measure_type

month

month

opponent_team_id

opponent_team_id

outcome

outcome

po_round

po_round

pace_adjust

pace_adjust

per_mode

per_mode

period

period

player_id

player_id

plus_minus

plus_minus

rank

rank

season

season

season_segment

season_segment

season_type

season_type

shot_clock_range

shot_clock_range

vs_conference

vs_conference

vs_division

vs_division

...

Additional arguments passed to an underlying function like httr.

Details

 wnba_playerdashboardbyopponent(player_id = '1628932', season = most_recent_wnba_season() - 1)

Value

Return a named list of data frames: ConferencePlayerDashboard, DivisionPlayerDashboard, OpponentPlayerDashboard, OverallPlayerDashboard

OverallPlayerDashboard

col_name types description
GROUP_SET character
GROUP_VALUE character
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
NBA_FANTASY_PTS character
DD2 character
TD3 character
WNBA_FANTASY_PTS character
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character
NBA_FANTASY_PTS_RANK character
DD2_RANK character
TD3_RANK character
WNBA_FANTASY_PTS_RANK character

ConferencePlayerDashboard

col_name types description
GROUP_SET character
GROUP_VALUE character
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
NBA_FANTASY_PTS character
DD2 character
TD3 character
WNBA_FANTASY_PTS character
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character
WBA_FANTASY_PTS_RANK character
DD2_RANK character
TD3_RANK character
WNBA_FANTASY_PTS_RANK character

DivisionPlayerDashboard

col_name types description
GROUP_SET character
GROUP_VALUE character
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
NBA_FANTASY_PTS character
DD2 character
TD3 character
WNBA_FANTASY_PTS character
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character
NBA_FANTASY_PTS_RANK character
DD2_RANK character
TD3_RANK character
WNBA_FANTASY_PTS_RANK character

OpponentPlayerDashboard

col_name types description
GROUP_SET character
GROUP_VALUE character
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
NBA_FANTASY_PTS character
DD2 character
TD3 character
WNBA_FANTASY_PTS character
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character
NBA_FANTASY_PTS_RANK character
DD2_RANK character
TD3_RANK character
WNBA_FANTASY_PTS_RANK character

Author(s)

Saiem Gilani

See Also

Other WNBA Player Functions: wnba_infographicfanduelplayer(), wnba_leaguedashplayerbiostats(), wnba_leaguedashplayerclutch(), wnba_leaguedashplayershotlocations(), wnba_leaguedashplayerstats(), wnba_leagueplayerondetails(), wnba_leagueseasonmatchups(), wnba_playerawards(), wnba_playercareerbycollege(), wnba_playercareerbycollegerollup(), wnba_playercareerstats(), wnba_playercompare(), wnba_playerdashboardbyclutch(), wnba_playerdashboardbygamesplits(), wnba_playerdashboardbygeneralsplits(), wnba_playerdashboardbylastngames(), wnba_playerdashboardbyshootingsplits(), wnba_playerdashboardbyteamperformance(), wnba_playerdashboardbyyearoveryear(), wnba_playerestimatedmetrics(), wnba_playerfantasyprofile(), wnba_playerfantasyprofilebargraph(), wnba_playergamelog(), wnba_playergamelogs(), wnba_playergamestreakfinder(), wnba_playerheadshot(), wnba_playerindex(), wnba_playernextngames(), wnba_playerprofilev2(), wnba_playervsplayer()


Get WNBA Stats API Player Dashboard by Shooting Splits

Description

Get WNBA Stats API Player Dashboard by Shooting Splits

Get WNBA Stats API Player Dashboard by Shooting Splits

Usage

wnba_playerdashboardbyshootingsplits(
  date_from = "",
  date_to = "",
  game_segment = "",
  last_n_games = 0,
  league_id = "10",
  location = "",
  measure_type = "Base",
  month = 0,
  opponent_team_id = 0,
  outcome = "",
  po_round = "",
  pace_adjust = "N",
  per_mode = "Totals",
  period = 0,
  player_id = "1628932",
  plus_minus = "N",
  rank = "N",
  season = most_recent_wnba_season() - 1,
  season_segment = "",
  season_type = "Regular Season",
  shot_clock_range = "",
  vs_conference = "",
  vs_division = "",
  ...
)

Arguments

date_from

date_from

date_to

date_to

game_segment

game_segment

last_n_games

last_n_games

league_id

league_id

location

location

measure_type

measure_type

month

month

opponent_team_id

opponent_team_id

outcome

outcome

po_round

po_round

pace_adjust

pace_adjust

per_mode

per_mode

period

period

player_id

player_id

plus_minus

plus_minus

rank

rank

season

season

season_segment

season_segment

season_type

season_type

shot_clock_range

shot_clock_range

vs_conference

vs_conference

vs_division

vs_division

...

Additional arguments passed to an underlying function like httr.

Details

 wnba_playerdashboardbyshootingsplits(player_id = '1628932', season = most_recent_wnba_season() - 1)

Value

Return a named list of data frames: AssistedBy, AssitedShotPlayerDashboard, OverallPlayerDashboard, Shot5FTPlayerDashboard, Shot8FTPlayerDashboard, ShotAreaPlayerDashboard, ShotTypePlayerDashboard, ShotTypeSummaryPlayerDashboard

OverallPlayerDashboard

col_name types description
GROUP_SET character
GROUP_VALUE character
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
EFG_PCT character Effective field goal percentage (0-1).
BLKA character
PCT_AST_2PM character
PCT_UAST_2PM character
PCT_AST_3PM character
PCT_UAST_3PM character
PCT_AST_FGM character
PCT_UAST_FGM character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
EFG_PCT_RANK character
BLKA_RANK character
PCT_AST_2PM_RANK character
PCT_UAST_2PM_RANK character
PCT_AST_3PM_RANK character
PCT_UAST_3PM_RANK character
PCT_AST_FGM_RANK character
PCT_UAST_FGM_RANK character

Shot5FTPlayerDashboard

col_name types description
GROUP_SET character
GROUP_VALUE character
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
EFG_PCT character Effective field goal percentage (0-1).
BLKA character
PCT_AST_2PM character
PCT_UAST_2PM character
PCT_AST_3PM character
PCT_UAST_3PM character
PCT_AST_FGM character
PCT_UAST_FGM character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
EFG_PCT_RANK character
BLKA_RANK character
PCT_AST_2PM_RANK character
PCT_UAST_2PM_RANK character
PCT_AST_3PM_RANK character
PCT_UAST_3PM_RANK character
PCT_AST_FGM_RANK character
PCT_UAST_FGM_RANK character

Shot8FTPlayerDashboard

col_name types description
GROUP_SET character
GROUP_VALUE character
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
EFG_PCT character Effective field goal percentage (0-1).
BLKA character
PCT_AST_2PM character
PCT_UAST_2PM character
PCT_AST_3PM character
PCT_UAST_3PM character
PCT_AST_FGM character
PCT_UAST_FGM character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
EFG_PCT_RANK character
BLKA_RANK character
PCT_AST_2PM_RANK character
PCT_UAST_2PM_RANK character
PCT_AST_3PM_RANK character
PCT_UAST_3PM_RANK character
PCT_AST_FGM_RANK character
PCT_UAST_FGM_RANK character

ShotAreaPlayerDashboard

col_name types description
GROUP_SET character
GROUP_VALUE character
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
EFG_PCT character Effective field goal percentage (0-1).
BLKA character
PCT_AST_2PM character
PCT_UAST_2PM character
PCT_AST_3PM character
PCT_UAST_3PM character
PCT_AST_FGM character
PCT_UAST_FGM character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
EFG_PCT_RANK character
BLKA_RANK character
PCT_AST_2PM_RANK character
PCT_UAST_2PM_RANK character
PCT_AST_3PM_RANK character
PCT_UAST_3PM_RANK character
PCT_AST_FGM_RANK character
PCT_UAST_FGM_RANK character

AssitedShotPlayerDashboard

col_name types description
GROUP_SET character
GROUP_VALUE character
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
EFG_PCT character Effective field goal percentage (0-1).
BLKA character
PCT_AST_2PM character
PCT_UAST_2PM character
PCT_AST_3PM character
PCT_UAST_3PM character
PCT_AST_FGM character
PCT_UAST_FGM character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
EFG_PCT_RANK character
BLKA_RANK character
PCT_AST_2PM_RANK character
PCT_UAST_2PM_RANK character
PCT_AST_3PM_RANK character
PCT_UAST_3PM_RANK character
PCT_AST_FGM_RANK character
PCT_UAST_FGM_RANK character

ShotTypeSummaryPlayerDashboard

col_name types description
GROUP_SET character
GROUP_VALUE character
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
EFG_PCT character Effective field goal percentage (0-1).
BLKA character
PCT_AST_2PM character
PCT_UAST_2PM character
PCT_AST_3PM character
PCT_UAST_3PM character
PCT_AST_FGM character
PCT_UAST_FGM character

ShotTypePlayerDashboard

col_name types description
GROUP_SET character
GROUP_VALUE character
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
EFG_PCT character Effective field goal percentage (0-1).
BLKA character
PCT_AST_2PM character
PCT_UAST_2PM character
PCT_AST_3PM character
PCT_UAST_3PM character
PCT_AST_FGM character
PCT_UAST_FGM character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
EFG_PCT_RANK character
BLKA_RANK character
PCT_AST_2PM_RANK character
PCT_UAST_2PM_RANK character
PCT_AST_3PM_RANK character
PCT_UAST_3PM_RANK character
PCT_AST_FGM_RANK character
PCT_UAST_FGM_RANK character

AssistedBy

col_name types description
GROUP_SET character
PLAYER_ID character Unique player identifier.
PLAYER_NAME character Player name.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
EFG_PCT character Effective field goal percentage (0-1).
BLKA character
PCT_AST_2PM character
PCT_UAST_2PM character
PCT_AST_3PM character
PCT_UAST_3PM character
PCT_AST_FGM character
PCT_UAST_FGM character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
EFG_PCT_RANK character
BLKA_RANK character
PCT_AST_2PM_RANK character
PCT_UAST_2PM_RANK character
PCT_AST_3PM_RANK character
PCT_UAST_3PM_RANK character
PCT_AST_FGM_RANK character
PCT_UAST_FGM_RANK character

Author(s)

Saiem Gilani

See Also

Other WNBA Player Functions: wnba_infographicfanduelplayer(), wnba_leaguedashplayerbiostats(), wnba_leaguedashplayerclutch(), wnba_leaguedashplayershotlocations(), wnba_leaguedashplayerstats(), wnba_leagueplayerondetails(), wnba_leagueseasonmatchups(), wnba_playerawards(), wnba_playercareerbycollege(), wnba_playercareerbycollegerollup(), wnba_playercareerstats(), wnba_playercompare(), wnba_playerdashboardbyclutch(), wnba_playerdashboardbygamesplits(), wnba_playerdashboardbygeneralsplits(), wnba_playerdashboardbylastngames(), wnba_playerdashboardbyopponent(), wnba_playerdashboardbyteamperformance(), wnba_playerdashboardbyyearoveryear(), wnba_playerestimatedmetrics(), wnba_playerfantasyprofile(), wnba_playerfantasyprofilebargraph(), wnba_playergamelog(), wnba_playergamelogs(), wnba_playergamestreakfinder(), wnba_playerheadshot(), wnba_playerindex(), wnba_playernextngames(), wnba_playerprofilev2(), wnba_playervsplayer()

Other WNBA Shooting Functions: wnba_leaguedashplayershotlocations(), wnba_leaguedashteamshotlocations(), wnba_shotchartdetail(), wnba_shotchartleaguewide(), wnba_shotchartlineupdetail(), wnba_teamdashboardbyshootingsplits()


Get WNBA Stats API Player Dashboard by Team Performance

Description

Get WNBA Stats API Player Dashboard by Team Performance

Get WNBA Stats API Player Dashboard by Team Performance

Usage

wnba_playerdashboardbyteamperformance(
  date_from = "",
  date_to = "",
  game_segment = "",
  last_n_games = 0,
  league_id = "10",
  location = "",
  measure_type = "Base",
  month = 0,
  opponent_team_id = 0,
  outcome = "",
  po_round = "",
  pace_adjust = "N",
  per_mode = "Totals",
  period = 0,
  player_id = "1628932",
  plus_minus = "N",
  rank = "N",
  season = most_recent_wnba_season() - 1,
  season_segment = "",
  season_type = "Regular Season",
  shot_clock_range = "",
  vs_conference = "",
  vs_division = "",
  ...
)

Arguments

date_from

date_from

date_to

date_to

game_segment

game_segment

last_n_games

last_n_games

league_id

league_id

location

location

measure_type

measure_type

month

month

opponent_team_id

opponent_team_id

outcome

outcome

po_round

po_round

pace_adjust

pace_adjust

per_mode

per_mode

period

period

player_id

player_id

plus_minus

plus_minus

rank

rank

season

season

season_segment

season_segment

season_type

season_type

shot_clock_range

shot_clock_range

vs_conference

vs_conference

vs_division

vs_division

...

Additional arguments passed to an underlying function like httr.

Details

 wnba_playerdashboardbyteamperformance(player_id = '1628932', season = most_recent_wnba_season() - 1)

Value

Return a named list of data frames: OverallPlayerDashboard, PointsScoredPlayerDashboard, PointsAgainstPlayerDashboard, ScoreDifferentialPlayerDashboard

OverallPlayerDashboard

col_name types description
GROUP_SET character
GROUP_VALUE character
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
NBA_FANTASY_PTS character
DD2 character
TD3 character
WNBA_FANTASY_PTS character
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character
NBA_FANTASY_PTS_RANK character
DD2_RANK character
TD3_RANK character
WNBA_FANTASY_PTS_RANK character

ScoreDifferentialPlayerDashboard

col_name types description
GROUP_SET character
GROUP_VALUE_ORDER character
GROUP_VALUE character
GROUP_VALUE_2 character
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
NBA_FANTASY_PTS character
DD2 character
TD3 character
WNBA_FANTASY_PTS character
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character
NBA_FANTASY_PTS_RANK character
DD2_RANK character
TD3_RANK character
WNBA_FANTASY_PTS_RANK character

PointsScoredPlayerDashboard

col_name types description
GROUP_SET character
GROUP_VALUE_ORDER character
GROUP_VALUE character
GROUP_VALUE_2 character
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
NBA_FANTASY_PTS character
DD2 character
TD3 character
WNBA_FANTASY_PTS character
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character
NBA_FANTASY_PTS_RANK character
DD2_RANK character
TD3_RANK character
WNBA_FANTASY_PTS_RANK character

PontsAgainstPlayerDashboard

col_name types description
GROUP_SET character
GROUP_VALUE_ORDER character
GROUP_VALUE character
GROUP_VALUE_2 character
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
NBA_FANTASY_PTS character
DD2 character
TD3 character
WNBA_FANTASY_PTS character
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character
NBA_FANTASY_PTS_RANK character
DD2_RANK character
TD3_RANK character
WNBA_FANTASY_PTS_RANK character

Author(s)

Saiem Gilani

See Also

Other WNBA Player Functions: wnba_infographicfanduelplayer(), wnba_leaguedashplayerbiostats(), wnba_leaguedashplayerclutch(), wnba_leaguedashplayershotlocations(), wnba_leaguedashplayerstats(), wnba_leagueplayerondetails(), wnba_leagueseasonmatchups(), wnba_playerawards(), wnba_playercareerbycollege(), wnba_playercareerbycollegerollup(), wnba_playercareerstats(), wnba_playercompare(), wnba_playerdashboardbyclutch(), wnba_playerdashboardbygamesplits(), wnba_playerdashboardbygeneralsplits(), wnba_playerdashboardbylastngames(), wnba_playerdashboardbyopponent(), wnba_playerdashboardbyshootingsplits(), wnba_playerdashboardbyyearoveryear(), wnba_playerestimatedmetrics(), wnba_playerfantasyprofile(), wnba_playerfantasyprofilebargraph(), wnba_playergamelog(), wnba_playergamelogs(), wnba_playergamestreakfinder(), wnba_playerheadshot(), wnba_playerindex(), wnba_playernextngames(), wnba_playerprofilev2(), wnba_playervsplayer()


Get WNBA Stats API Player Dashboard Year over Year

Description

Get WNBA Stats API Player Dashboard Year over Year

Get WNBA Stats API Player Dashboard Year over Year

Usage

wnba_playerdashboardbyyearoveryear(
  date_from = "",
  date_to = "",
  game_segment = "",
  last_n_games = 0,
  league_id = "10",
  location = "",
  measure_type = "Base",
  month = 0,
  opponent_team_id = 0,
  outcome = "",
  po_round = "",
  pace_adjust = "N",
  per_mode = "Totals",
  period = 0,
  player_id = "1628932",
  plus_minus = "N",
  rank = "N",
  season = most_recent_wnba_season() - 1,
  season_segment = "",
  season_type = "Regular Season",
  shot_clock_range = "",
  vs_conference = "",
  vs_division = "",
  ...
)

Arguments

date_from

date_from

date_to

date_to

game_segment

game_segment

last_n_games

last_n_games

league_id

league_id

location

location

measure_type

measure_type

month

month

opponent_team_id

opponent_team_id

outcome

outcome

po_round

po_round

pace_adjust

pace_adjust

per_mode

per_mode

period

period

player_id

player_id

plus_minus

plus_minus

rank

rank

season

season

season_segment

season_segment

season_type

season_type

shot_clock_range

shot_clock_range

vs_conference

vs_conference

vs_division

vs_division

...

Additional arguments passed to an underlying function like httr.

Details

 wnba_playerdashboardbyyearoveryear(player_id = '1628932', season = most_recent_wnba_season() - 1)

Value

Return a named list of data frames: ByYearPlayerDashboard, OverallPlayerDashboard

OverallPlayerDashboard

col_name types description
GROUP_SET character
GROUP_VALUE character
TEAM_ID character Unique team identifier.
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
MAX_GAME_DATE character
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
NBA_FANTASY_PTS character
DD2 character
TD3 character
WNBA_FANTASY_PTS character
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character
NBA_FANTASY_PTS_RANK character
DD2_RANK character
TD3_RANK character
WNBA_FANTASY_PTS_RANK character

ByYearPlayerDashboard

col_name types description
GROUP_SET character
GROUP_VALUE character
TEAM_ID character Unique team identifier.
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
MAX_GAME_DATE character
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
NBA_FANTASY_PTS character
DD2 character
TD3 character
WNBA_FANTASY_PTS character
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character
NBA_FANTASY_PTS_RANK character
DD2_RANK character
TD3_RANK character
WNBA_FANTASY_PTS_RANK character

Author(s)

Saiem Gilani

See Also

Other WNBA Player Functions: wnba_infographicfanduelplayer(), wnba_leaguedashplayerbiostats(), wnba_leaguedashplayerclutch(), wnba_leaguedashplayershotlocations(), wnba_leaguedashplayerstats(), wnba_leagueplayerondetails(), wnba_leagueseasonmatchups(), wnba_playerawards(), wnba_playercareerbycollege(), wnba_playercareerbycollegerollup(), wnba_playercareerstats(), wnba_playercompare(), wnba_playerdashboardbyclutch(), wnba_playerdashboardbygamesplits(), wnba_playerdashboardbygeneralsplits(), wnba_playerdashboardbylastngames(), wnba_playerdashboardbyopponent(), wnba_playerdashboardbyshootingsplits(), wnba_playerdashboardbyteamperformance(), wnba_playerestimatedmetrics(), wnba_playerfantasyprofile(), wnba_playerfantasyprofilebargraph(), wnba_playergamelog(), wnba_playergamelogs(), wnba_playergamestreakfinder(), wnba_playerheadshot(), wnba_playerindex(), wnba_playernextngames(), wnba_playerprofilev2(), wnba_playervsplayer()


Get WNBA Stats API Player Estimated Metrics

Description

Get WNBA Stats API Player Estimated Metrics

Get WNBA Stats API Player Estimated Metrics

Usage

wnba_playerestimatedmetrics(
  league_id = "10",
  season = most_recent_wnba_season() - 1,
  season_type = "Regular Season",
  ...
)

Arguments

league_id

League - default: '00'. Other options include '10': WWNBA, '20': G-League

season

Season - format 2020-21

season_type

Season Type - Regular Season, Playoffs, All-Star

...

Additional arguments passed to an underlying function like httr.

Details

  wnba_playerestimatedmetrics()

Value

Return a named list of data frames: PlayerEstimatedMetrics

PlayerEstimatedMetrics

col_name types description
PLAYER_ID character Unique player identifier.
PLAYER_NAME character Player name.
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
E_OFF_RATING character
E_DEF_RATING character
E_NET_RATING character
E_AST_RATIO character
E_OREB_PCT character
E_DREB_PCT character
E_REB_PCT character
E_TOV_PCT character
E_USG_PCT character
E_PACE character
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
E_OFF_RATING_RANK character
E_DEF_RATING_RANK character
E_NET_RATING_RANK character
E_AST_RATIO_RANK character
E_OREB_PCT_RANK character
E_DREB_PCT_RANK character
E_REB_PCT_RANK character
E_TOV_PCT_RANK character
E_USG_PCT_RANK character
E_PACE_RANK character

Author(s)

Saiem Gilani

See Also

Other WNBA Player Functions: wnba_infographicfanduelplayer(), wnba_leaguedashplayerbiostats(), wnba_leaguedashplayerclutch(), wnba_leaguedashplayershotlocations(), wnba_leaguedashplayerstats(), wnba_leagueplayerondetails(), wnba_leagueseasonmatchups(), wnba_playerawards(), wnba_playercareerbycollege(), wnba_playercareerbycollegerollup(), wnba_playercareerstats(), wnba_playercompare(), wnba_playerdashboardbyclutch(), wnba_playerdashboardbygamesplits(), wnba_playerdashboardbygeneralsplits(), wnba_playerdashboardbylastngames(), wnba_playerdashboardbyopponent(), wnba_playerdashboardbyshootingsplits(), wnba_playerdashboardbyteamperformance(), wnba_playerdashboardbyyearoveryear(), wnba_playerfantasyprofile(), wnba_playerfantasyprofilebargraph(), wnba_playergamelog(), wnba_playergamelogs(), wnba_playergamestreakfinder(), wnba_playerheadshot(), wnba_playerindex(), wnba_playernextngames(), wnba_playerprofilev2(), wnba_playervsplayer()


Get WNBA Stats API Player Fantasy Profile

Description

Get WNBA Stats API Player Fantasy Profile

Get WNBA Stats API Player Fantasy Profile

Usage

wnba_playerfantasyprofile(
  league_id = "10",
  measure_type = "Base",
  pace_adjust = "N",
  per_mode = "Totals",
  player_id = "1628932",
  plus_minus = "N",
  rank = "N",
  season = most_recent_wnba_season() - 1,
  season_type = "Regular Season",
  ...
)

Arguments

league_id

League - default: '00'. Other options include '10': WWNBA, '20': G-League

measure_type

measure_type

pace_adjust

Pace Adjustment - Y/N

per_mode

Per Mode - PerGame, Totals

player_id

Player ID

plus_minus

Plus Minus - Y/N

rank

Rank - Y/N

season

Season - format 2020-21

season_type

Season Type - Regular Season, Playoffs, All-Star

...

Additional arguments passed to an underlying function like httr.

Details

 wnba_playerfantasyprofile(player_id = '1628932')

Value

Return a named list of data frames: DaysRestModified, LastNGames, Location, Opponent, Overall

Overall

col_name types description
GROUP_SET character
GROUP_VALUE character
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
DD2 character
TD3 character
FAN_DUEL_PTS character
WNBA_FANTASY_PTS character

Location

col_name types description
GROUP_SET character
GROUP_VALUE character
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
DD2 character
TD3 character
FAN_DUEL_PTS character
WNBA_FANTASY_PTS character

LastNGames

col_name types description
GROUP_SET character
GROUP_VALUE character
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
DD2 character
TD3 character
FAN_DUEL_PTS character
WNBA_FANTASY_PTS character

DaysRestModified

col_name types description
GROUP_SET character
GROUP_VALUE character
SEASON_YEAR character Season year string ('YYYY-YY' format).
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
DD2 character
TD3 character
FAN_DUEL_PTS character
WNBA_FANTASY_PTS character

Opponent

col_name types description
GROUP_SET character
GROUP_VALUE character
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
DD2 character
TD3 character
FAN_DUEL_PTS character
NBA_FANTASY_PTS character

Author(s)

Saiem Gilani

See Also

Other WNBA Player Functions: wnba_infographicfanduelplayer(), wnba_leaguedashplayerbiostats(), wnba_leaguedashplayerclutch(), wnba_leaguedashplayershotlocations(), wnba_leaguedashplayerstats(), wnba_leagueplayerondetails(), wnba_leagueseasonmatchups(), wnba_playerawards(), wnba_playercareerbycollege(), wnba_playercareerbycollegerollup(), wnba_playercareerstats(), wnba_playercompare(), wnba_playerdashboardbyclutch(), wnba_playerdashboardbygamesplits(), wnba_playerdashboardbygeneralsplits(), wnba_playerdashboardbylastngames(), wnba_playerdashboardbyopponent(), wnba_playerdashboardbyshootingsplits(), wnba_playerdashboardbyteamperformance(), wnba_playerdashboardbyyearoveryear(), wnba_playerestimatedmetrics(), wnba_playerfantasyprofilebargraph(), wnba_playergamelog(), wnba_playergamelogs(), wnba_playergamestreakfinder(), wnba_playerheadshot(), wnba_playerindex(), wnba_playernextngames(), wnba_playerprofilev2(), wnba_playervsplayer()

Other WNBA Fantasy Functions: wnba_fantasywidget(), wnba_infographicfanduelplayer(), wnba_playerfantasyprofilebargraph()


Get WNBA Stats API Player Fantasy Profile Bar Graph

Description

Get WNBA Stats API Player Fantasy Profile Bar Graph

Get WNBA Stats API Player Fantasy Profile Bar Graph

Usage

wnba_playerfantasyprofilebargraph(
  league_id = "10",
  player_id = "1628932",
  season = most_recent_wnba_season() - 1,
  season_type = "Regular Season",
  ...
)

Arguments

league_id

League - default: '00'. Other options include '10': WWNBA, '20': G-League

player_id

Player ID

season

Season - format 2020-21

season_type

Season Type - Regular Season, Playoffs, All-Star

...

Additional arguments passed to an underlying function like httr.

Details

  wnba_playerfantasyprofilebargraph(player_id = '1628932')

Value

Return a named list of data frames: LastFiveGamesAvg, SeasonAvg

SeasonAvg

col_name types description
PLAYER_ID character Unique player identifier.
PLAYER_NAME character Player name.
TEAM_ID character Unique team identifier.
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
FAN_DUEL_PTS character
NBA_FANTASY_PTS character
PTS character Points scored.
REB character Total rebounds.
AST character Assists.
FG3M character Three-point field goals made.
FT_PCT character Free throw percentage (0-1).
STL character Steals.
BLK character Blocks.
TOV character Turnovers.
FG_PCT character Field goal percentage (0-1).

LastFiveGamesAvg

col_name types description
PLAYER_ID character Unique player identifier.
PLAYER_NAME character Player name.
TEAM_ID character Unique team identifier.
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
FAN_DUEL_PTS character
NBA_FANTASY_PTS character
PTS character Points scored.
REB character Total rebounds.
AST character Assists.
FG3M character Three-point field goals made.
FT_PCT character Free throw percentage (0-1).
STL character Steals.
BLK character Blocks.
TOV character Turnovers.
FG_PCT character Field goal percentage (0-1).

Author(s)

Saiem Gilani

See Also

Other WNBA Player Functions: wnba_infographicfanduelplayer(), wnba_leaguedashplayerbiostats(), wnba_leaguedashplayerclutch(), wnba_leaguedashplayershotlocations(), wnba_leaguedashplayerstats(), wnba_leagueplayerondetails(), wnba_leagueseasonmatchups(), wnba_playerawards(), wnba_playercareerbycollege(), wnba_playercareerbycollegerollup(), wnba_playercareerstats(), wnba_playercompare(), wnba_playerdashboardbyclutch(), wnba_playerdashboardbygamesplits(), wnba_playerdashboardbygeneralsplits(), wnba_playerdashboardbylastngames(), wnba_playerdashboardbyopponent(), wnba_playerdashboardbyshootingsplits(), wnba_playerdashboardbyteamperformance(), wnba_playerdashboardbyyearoveryear(), wnba_playerestimatedmetrics(), wnba_playerfantasyprofile(), wnba_playergamelog(), wnba_playergamelogs(), wnba_playergamestreakfinder(), wnba_playerheadshot(), wnba_playerindex(), wnba_playernextngames(), wnba_playerprofilev2(), wnba_playervsplayer()

Other WNBA Fantasy Functions: wnba_fantasywidget(), wnba_infographicfanduelplayer(), wnba_playerfantasyprofile()


Get WNBA Stats API Player Game Log

Description

Get WNBA Stats API Player Game Log

Get WNBA Stats API Player Game Log

Usage

wnba_playergamelog(
  date_from = "",
  date_to = "",
  league_id = "10",
  player_id = "1628932",
  season = most_recent_wnba_season() - 1,
  season_type = "Regular Season",
  ...
)

Arguments

date_from

date_from

date_to

date_to

league_id

League - default: '00'. Other options include '10': WWNBA, '20': G-League

player_id

Player ID

season

Season - format 2020-21

season_type

Season Type - Regular Season, Playoffs, All-Star

...

Additional arguments passed to an underlying function like httr.

Details

  wnba_playergamelog(player_id = '1628932')

Value

Return a named list of data frames: PlayerGameLog

PlayerGameLog

col_name types description
SEASON_ID character Unique season identifier.
Player_ID character Unique player identifier.
Game_ID character Unique game identifier.
GAME_DATE character Game date (YYYY-MM-DD).
MATCHUP character Matchup.
WL character
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
STL character Steals.
BLK character Blocks.
TOV character Turnovers.
PF character Personal fouls.
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
VIDEO_AVAILABLE character Video available.

Author(s)

Saiem Gilani

See Also

Other WNBA Player Functions: wnba_infographicfanduelplayer(), wnba_leaguedashplayerbiostats(), wnba_leaguedashplayerclutch(), wnba_leaguedashplayershotlocations(), wnba_leaguedashplayerstats(), wnba_leagueplayerondetails(), wnba_leagueseasonmatchups(), wnba_playerawards(), wnba_playercareerbycollege(), wnba_playercareerbycollegerollup(), wnba_playercareerstats(), wnba_playercompare(), wnba_playerdashboardbyclutch(), wnba_playerdashboardbygamesplits(), wnba_playerdashboardbygeneralsplits(), wnba_playerdashboardbylastngames(), wnba_playerdashboardbyopponent(), wnba_playerdashboardbyshootingsplits(), wnba_playerdashboardbyteamperformance(), wnba_playerdashboardbyyearoveryear(), wnba_playerestimatedmetrics(), wnba_playerfantasyprofile(), wnba_playerfantasyprofilebargraph(), wnba_playergamelogs(), wnba_playergamestreakfinder(), wnba_playerheadshot(), wnba_playerindex(), wnba_playernextngames(), wnba_playerprofilev2(), wnba_playervsplayer()


Get WNBA Stats API Player Game Logs

Description

Get WNBA Stats API Player Game Logs

Get WNBA Stats API Player Game Logs

Usage

wnba_playergamelogs(
  date_from = "",
  date_to = "",
  game_segment = "",
  last_n_games = 0,
  league_id = "10",
  location = "",
  measure_type = "Base",
  month = 0,
  opponent_team_id = 0,
  outcome = "",
  po_round = "",
  per_mode = "Totals",
  period = 0,
  player_id = "1628932",
  season = most_recent_wnba_season() - 1,
  season_segment = "",
  season_type = "Regular Season",
  team_id = "",
  vs_conference = "",
  vs_division = "",
  ...
)

Arguments

date_from

date_from

date_to

date_to

game_segment

game_segment

last_n_games

last_n_games

league_id

League - default: '00'. Other options include '10': WWNBA, '20': G-League

location

location

measure_type

measure_type

month

month

opponent_team_id

opponent_team_id

outcome

outcome

po_round

po_round

per_mode

per_mode

period

period

player_id

Player ID

season

Season - format 2020-21

season_segment

season_segment

season_type

Season Type - Regular Season, Playoffs, All-Star

team_id

team_id

vs_conference

vs_conference

vs_division

vs_division

...

Additional arguments passed to an underlying function like httr.

Details

 wnba_playergamelogs(player_id = '1628932')

Value

Return a named list of data frames: PlayerGameLogs

PlayerGameLogs

col_name types description
SEASON_YEAR character Season year string ('YYYY-YY' format).
PLAYER_ID character Unique player identifier.
PLAYER_NAME character Player name.
NICKNAME character Team or athlete nickname.
TEAM_ID character Unique team identifier.
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
TEAM_NAME character Full team display name (e.g. 'Las Vegas Aces').
GAME_ID character Unique game identifier.
GAME_DATE character Game date (YYYY-MM-DD).
MATCHUP character Matchup.
WL character
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
WNBA_FANTASY_PTS character
DD2 character
TD3 character
WWNBA_FANTASY_PTS character
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character
WNBA_FANTASY_PTS_RANK character
DD2_RANK character
TD3_RANK character
WWNBA_FANTASY_PTS_RANK character
VIDEO_AVAILABLE_FLAG character Video available flag.

Author(s)

Saiem Gilani

See Also

Other WNBA Player Functions: wnba_infographicfanduelplayer(), wnba_leaguedashplayerbiostats(), wnba_leaguedashplayerclutch(), wnba_leaguedashplayershotlocations(), wnba_leaguedashplayerstats(), wnba_leagueplayerondetails(), wnba_leagueseasonmatchups(), wnba_playerawards(), wnba_playercareerbycollege(), wnba_playercareerbycollegerollup(), wnba_playercareerstats(), wnba_playercompare(), wnba_playerdashboardbyclutch(), wnba_playerdashboardbygamesplits(), wnba_playerdashboardbygeneralsplits(), wnba_playerdashboardbylastngames(), wnba_playerdashboardbyopponent(), wnba_playerdashboardbyshootingsplits(), wnba_playerdashboardbyteamperformance(), wnba_playerdashboardbyyearoveryear(), wnba_playerestimatedmetrics(), wnba_playerfantasyprofile(), wnba_playerfantasyprofilebargraph(), wnba_playergamelog(), wnba_playergamestreakfinder(), wnba_playerheadshot(), wnba_playerindex(), wnba_playernextngames(), wnba_playerprofilev2(), wnba_playervsplayer()


Get WNBA Stats API Player Game Streak Finder

Description

Get WNBA Stats API Player Game Streak Finder

Get WNBA Stats API Player Game Streak Finder

Usage

wnba_playergamestreakfinder(
  active_streaks_only = "",
  conference = "",
  date_from = "",
  date_to = "",
  division = "",
  draft_year = "",
  draft_team_id = "",
  draft_round = "",
  draft_number = "",
  et_ast = "",
  et_blk = "",
  et_dd = "",
  et_dreb = "",
  et_fg3a = "",
  et_fg3m = "",
  et_fg3_pct = "",
  et_fga = "",
  et_fgm = "",
  et_fg_pct = "",
  et_fta = "",
  et_ftm = "",
  et_ft_pct = "",
  et_minutes = "",
  et_oreb = "",
  et_pf = "",
  et_pts = "",
  et_reb = "",
  et_stl = "",
  et_td = "",
  et_tov = "",
  game_id = "",
  gt_ast = "",
  gt_blk = "",
  gt_dd = "",
  gt_dreb = "",
  gt_fg3a = "",
  gt_fg3m = "",
  gt_fg3_pct = "",
  gt_fga = "",
  gt_fgm = "",
  gt_fg_pct = "",
  gt_fta = "",
  gt_ftm = "",
  gt_ft_pct = "",
  gt_minutes = "",
  gt_oreb = "",
  gt_pf = "",
  gt_pts = "",
  gt_reb = "",
  gt_stl = "",
  gt_td = "",
  gt_tov = "",
  league_id = "10",
  location = "",
  lt_ast = "",
  lt_blk = "",
  lt_dd = "",
  lt_dreb = "",
  lt_fg3a = "",
  lt_fg3m = "",
  lt_fg3_pct = "",
  lt_fga = "",
  lt_fgm = "",
  lt_fg_pct = "",
  lt_fta = "",
  lt_ftm = "",
  lt_ft_pct = "",
  lt_minutes = "",
  lt_oreb = "",
  lt_pf = "",
  lt_pts = "",
  lt_reb = "",
  lt_stl = "",
  lt_td = "",
  lt_tov = "",
  min_games = "",
  outcome = "",
  po_round = "",
  player_id = "",
  rookie_year = "",
  season = most_recent_wnba_season() - 1,
  season_segment = "",
  season_type = "Regular Season",
  starter_bench = "",
  team_id = "",
  vs_conference = "",
  vs_division = "",
  vs_team_id = "",
  years_experience = "",
  ...
)

Arguments

active_streaks_only

active_streaks_only

conference

conference

date_from

date_from

date_to

date_to

division

division

draft_year

draft_year

draft_team_id

draft_team_id

draft_round

draft_round

draft_number

draft_number

et_ast

et_ast

et_blk

et_blk

et_dd

et_dd

et_dreb

et_dreb

et_fg3a

et_fg3a

et_fg3m

et_fg3m

et_fg3_pct

et_fg3_pct

et_fga

et_fga

et_fgm

et_fgm

et_fg_pct

et_fg_pct

et_fta

et_fta

et_ftm

et_ftm

et_ft_pct

et_ft_pct

et_minutes

et_minutes

et_oreb

et_oreb

et_pf

et_pf

et_pts

et_pts

et_reb

et_reb

et_stl

et_stl

et_td

et_td

et_tov

et_tov

game_id

game_id

gt_ast

gt_ast

gt_blk

gt_blk

gt_dd

gt_dd

gt_dreb

gt_dreb

gt_fg3a

gt_fg3a

gt_fg3m

gt_fg3m

gt_fg3_pct

gt_fg3_pct

gt_fga

gt_fga

gt_fgm

gt_fgm

gt_fg_pct

gt_fg_pct

gt_fta

gt_fta

gt_ftm

gt_ftm

gt_ft_pct

gt_ft_pct

gt_minutes

gt_minutes

gt_oreb

gt_oreb

gt_pf

gt_pf

gt_pts

gt_pts

gt_reb

gt_reb

gt_stl

gt_stl

gt_td

gt_td

gt_tov

gt_tov

league_id

league_id

location

location

lt_ast

lt_ast

lt_blk

lt_blk

lt_dd

lt_dd

lt_dreb

lt_dreb

lt_fg3a

lt_fg3a

lt_fg3m

lt_fg3m

lt_fg3_pct

lt_fg3_pct

lt_fga

lt_fga

lt_fgm

lt_fgm

lt_fg_pct

lt_fg_pct

lt_fta

lt_fta

lt_ftm

lt_ftm

lt_ft_pct

lt_ft_pct

lt_minutes

lt_minutes

lt_oreb

lt_oreb

lt_pf

lt_pf

lt_pts

lt_pts

lt_reb

lt_reb

lt_stl

lt_stl

lt_td

lt_td

lt_tov

lt_tov

min_games

min_games

outcome

outcome

po_round

po_round

player_id

player_id

rookie_year

rookie_year

season

season

season_segment

season_segment

season_type

season_type

starter_bench

starter_bench

team_id

team_id

vs_conference

vs_conference

vs_division

vs_division

vs_team_id

vs_team_id

years_experience

years_experience

...

Additional arguments passed to an underlying function like httr.

Details

 wnba_playergamestreakfinder()

Value

Return a named list of data frames: PlayerGameStreakFinderResults

PlayerGameStreakFinderResults

col_name types description
PLAYER_NAME_LAST_FIRST character
PLAYER_ID character Unique player identifier.
GAMESTREAK character
STARTDATE character
ENDDATE character
ACTIVESTREAK character
NUMSEASONS character
LASTSEASON character
FIRSTSEASON character

Author(s)

Saiem Gilani

See Also

Other WNBA Player Functions: wnba_infographicfanduelplayer(), wnba_leaguedashplayerbiostats(), wnba_leaguedashplayerclutch(), wnba_leaguedashplayershotlocations(), wnba_leaguedashplayerstats(), wnba_leagueplayerondetails(), wnba_leagueseasonmatchups(), wnba_playerawards(), wnba_playercareerbycollege(), wnba_playercareerbycollegerollup(), wnba_playercareerstats(), wnba_playercompare(), wnba_playerdashboardbyclutch(), wnba_playerdashboardbygamesplits(), wnba_playerdashboardbygeneralsplits(), wnba_playerdashboardbylastngames(), wnba_playerdashboardbyopponent(), wnba_playerdashboardbyshootingsplits(), wnba_playerdashboardbyteamperformance(), wnba_playerdashboardbyyearoveryear(), wnba_playerestimatedmetrics(), wnba_playerfantasyprofile(), wnba_playerfantasyprofilebargraph(), wnba_playergamelog(), wnba_playergamelogs(), wnba_playerheadshot(), wnba_playerindex(), wnba_playernextngames(), wnba_playerprofilev2(), wnba_playervsplayer()

Other WNBA Game Finder Functions: wnba_leaguegamefinder(), wnba_teamgamestreakfinder()


Get WNBA Stats API Player Head-shot

Description

Get WNBA Stats API Player Head-shot

Get WNBA Stats API Player Head-shot

Usage

wnba_playerheadshot(player_id = "1628932", ...)

Arguments

player_id

Player ID

...

Additional arguments passed to an underlying function like httr.

Details

 wnba_playerheadshot(player_id = '1628932')

Value

Returns a url of the png for the player_id selected

Author(s)

Saiem Gilani

See Also

Other WNBA Player Functions: wnba_infographicfanduelplayer(), wnba_leaguedashplayerbiostats(), wnba_leaguedashplayerclutch(), wnba_leaguedashplayershotlocations(), wnba_leaguedashplayerstats(), wnba_leagueplayerondetails(), wnba_leagueseasonmatchups(), wnba_playerawards(), wnba_playercareerbycollege(), wnba_playercareerbycollegerollup(), wnba_playercareerstats(), wnba_playercompare(), wnba_playerdashboardbyclutch(), wnba_playerdashboardbygamesplits(), wnba_playerdashboardbygeneralsplits(), wnba_playerdashboardbylastngames(), wnba_playerdashboardbyopponent(), wnba_playerdashboardbyshootingsplits(), wnba_playerdashboardbyteamperformance(), wnba_playerdashboardbyyearoveryear(), wnba_playerestimatedmetrics(), wnba_playerfantasyprofile(), wnba_playerfantasyprofilebargraph(), wnba_playergamelog(), wnba_playergamelogs(), wnba_playergamestreakfinder(), wnba_playerindex(), wnba_playernextngames(), wnba_playerprofilev2(), wnba_playervsplayer()


Get WNBA Stats API Player Index

Description

Get WNBA Stats API Player Index

Get WNBA Stats API Player Index

Usage

wnba_playerindex(
  college = "",
  country = "",
  draft_pick = "",
  draft_round = "",
  draft_year = "",
  height = "",
  historical = 1,
  league_id = "10",
  season = most_recent_wnba_season() - 1,
  season_type = "Regular Season",
  team_id = "0",
  weight = "",
  ...
)

Arguments

college

Player College

country

Player Country

draft_pick

Draft Pick

draft_round

Draft Round

draft_year

Draft Year

height

Player Height

historical

Whether to include only current players (0) or all historical (1).

league_id

League - default: '00'. Other options include '10': WWNBA, '20': G-League

season

Season - format 2020-21

season_type

Season Type - Regular Season, Playoffs, All-Star

team_id

Team ID. Default: 0 (all teams).

weight

Player weight

...

Additional arguments passed to an underlying function like httr.

Details

  wnba_playerindex()

Value

Return a named list of data frames: PlayerIndex

PlayerIndex

col_name types description
PERSON_ID character Unique player identifier (V3 endpoints).
PLAYER_LAST_NAME character
PLAYER_FIRST_NAME character
PLAYER_SLUG character URL-safe player identifier.
TEAM_ID character Unique team identifier.
TEAM_SLUG character URL-safe team identifier (e.g. 'lasvegas-aces' / 'aces').
IS_DEFUNCT character
TEAM_CITY character Team city or region (e.g. 'Las Vegas').
TEAM_NAME character Full team display name (e.g. 'Las Vegas Aces').
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
JERSEY_NUMBER character
POSITION character Listed roster position (G, F, C, etc.).
HEIGHT character Player height (string e.g. '6-2' or inches).
WEIGHT character Player weight in pounds.
COLLEGE character College or school attended.
COUNTRY character Country (full name or code).
DRAFT_YEAR character Draft year (4-digit).
DRAFT_ROUND character Round of the draft selection.
DRAFT_NUMBER character
ROSTER_STATUS character
PTS character Points scored.
REB character Total rebounds.
AST character Assists.
STATS_TIMEFRAME character
FROM_YEAR character
TO_YEAR character

Author(s)

Saiem Gilani

See Also

Other WNBA Player Functions: wnba_infographicfanduelplayer(), wnba_leaguedashplayerbiostats(), wnba_leaguedashplayerclutch(), wnba_leaguedashplayershotlocations(), wnba_leaguedashplayerstats(), wnba_leagueplayerondetails(), wnba_leagueseasonmatchups(), wnba_playerawards(), wnba_playercareerbycollege(), wnba_playercareerbycollegerollup(), wnba_playercareerstats(), wnba_playercompare(), wnba_playerdashboardbyclutch(), wnba_playerdashboardbygamesplits(), wnba_playerdashboardbygeneralsplits(), wnba_playerdashboardbylastngames(), wnba_playerdashboardbyopponent(), wnba_playerdashboardbyshootingsplits(), wnba_playerdashboardbyteamperformance(), wnba_playerdashboardbyyearoveryear(), wnba_playerestimatedmetrics(), wnba_playerfantasyprofile(), wnba_playerfantasyprofilebargraph(), wnba_playergamelog(), wnba_playergamelogs(), wnba_playergamestreakfinder(), wnba_playerheadshot(), wnba_playernextngames(), wnba_playerprofilev2(), wnba_playervsplayer()


Get WNBA Stats API Player Next N Games

Description

Get WNBA Stats API Player Next N Games

Get WNBA Stats API Player Next N Games

Usage

wnba_playernextngames(
  league_id = "10",
  number_of_games = 2147483647,
  player_id = "1628932",
  season = most_recent_wnba_season() - 1,
  season_type = "Regular Season",
  ...
)

Arguments

league_id

League - default: '00'. Other options include '10': WWNBA, '20': G-League

number_of_games

N in number of games

player_id

Player ID

season

Season - format 2020-21

season_type

Season Type - Regular Season, Playoffs, All-Star

...

Additional arguments passed to an underlying function like httr.

Details

  wnba_playernextngames(player_id = '1628932', season = most_recent_wnba_season() - 1)

Value

Return a named list of data frames: NextNGames

NextNGames

col_name types description
GAME_ID character Unique game identifier.
GAME_DATE character Game date (YYYY-MM-DD).
HOME_TEAM_ID character Unique identifier for the home team.
VISITOR_TEAM_ID character Unique identifier for visitor team.
HOME_TEAM_NAME character Home team name.
VISITOR_TEAM_NAME character
HOME_TEAM_ABBREVIATION character
VISITOR_TEAM_ABBREVIATION character
HOME_TEAM_NICKNAME character
VISITOR_TEAM_NICKNAME character
GAME_TIME character Game start time.
HOME_WL character
VISITOR_WL character

Author(s)

Saiem Gilani

See Also

Other WNBA Player Functions: wnba_infographicfanduelplayer(), wnba_leaguedashplayerbiostats(), wnba_leaguedashplayerclutch(), wnba_leaguedashplayershotlocations(), wnba_leaguedashplayerstats(), wnba_leagueplayerondetails(), wnba_leagueseasonmatchups(), wnba_playerawards(), wnba_playercareerbycollege(), wnba_playercareerbycollegerollup(), wnba_playercareerstats(), wnba_playercompare(), wnba_playerdashboardbyclutch(), wnba_playerdashboardbygamesplits(), wnba_playerdashboardbygeneralsplits(), wnba_playerdashboardbylastngames(), wnba_playerdashboardbyopponent(), wnba_playerdashboardbyshootingsplits(), wnba_playerdashboardbyteamperformance(), wnba_playerdashboardbyyearoveryear(), wnba_playerestimatedmetrics(), wnba_playerfantasyprofile(), wnba_playerfantasyprofilebargraph(), wnba_playergamelog(), wnba_playergamelogs(), wnba_playergamestreakfinder(), wnba_playerheadshot(), wnba_playerindex(), wnba_playerprofilev2(), wnba_playervsplayer()


Get WNBA Stats API Player Profile V2

Description

Get WNBA Stats API Player Profile V2

Get WNBA Stats API Player Profile V2

Usage

wnba_playerprofilev2(
  league_id = "10",
  per_mode = "Totals",
  player_id = "1628932",
  ...
)

Arguments

league_id

League - default: '00'. Other options include '10': WWNBA, '20': G-League

per_mode

Season - format 2020-21

player_id

Player ID

...

Additional arguments passed to an underlying function like httr.

Details

  wnba_playerprofilev2(player_id = '1628932')

Value

Return a named list of data frames: CareerHighs, CareerTotalsAllStarSeason, CareerTotalsCollegeSeason, CareerTotalsPostSeason, CareerTotalsPreseason, CareerTotalsRegularSeason, NextGame, SeasonHighs, SeasonRankingsPostSeason, SeasonRankingsRegularSeason, SeasonTotalsAllStarSeason, SeasonTotalsCollegeSeason, SeasonTotalsPostSeason, SeasonTotalsPreseason, SeasonTotalsRegularSeason

SeasonTotalsRegularSeason

col_name types description
PLAYER_ID character Unique player identifier.
SEASON_ID character Unique season identifier.
LEAGUE_ID character League identifier ('10' = WNBA).
TEAM_ID character Unique team identifier.
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
PLAYER_AGE character
GP character Games played.
GS character Games started.
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
STL character Steals.
BLK character Blocks.
TOV character Turnovers.
PF character Personal fouls.
PTS character Points scored.

CareerTotalsRegularSeason

col_name types description
PLAYER_ID character Unique player identifier.
LEAGUE_ID character League identifier ('10' = WNBA).
TEAM_ID character Unique team identifier.
GP character Games played.
GS character Games started.
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
STL character Steals.
BLK character Blocks.
TOV character Turnovers.
PF character Personal fouls.
PTS character Points scored.

SeasonTotalsPostSeason

col_name types description
PLAYER_ID character Unique player identifier.
SEASON_ID character Unique season identifier.
LEAGUE_ID character League identifier ('10' = WNBA).
TEAM_ID character Unique team identifier.
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
PLAYER_AGE character
GP character Games played.
GS character Games started.
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
STL character Steals.
BLK character Blocks.
TOV character Turnovers.
PF character Personal fouls.
PTS character Points scored.

CareerTotalsPostSeason

col_name types description
PLAYER_ID character Unique player identifier.
LEAGUE_ID character League identifier ('10' = WNBA).
TEAM_ID character Unique team identifier.
GP character Games played.
GS character Games started.
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
STL character Steals.
BLK character Blocks.
TOV character Turnovers.
PF character Personal fouls.
PTS character Points scored.

SeasonTotalsAllStarSeason

col_name types description
PLAYER_ID character Unique player identifier.
SEASON_ID character Unique season identifier.
LEAGUE_ID character League identifier ('10' = WNBA).
TEAM_ID character Unique team identifier.
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
PLAYER_AGE character
GP character Games played.
GS character Games started.
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
STL character Steals.
BLK character Blocks.
TOV character Turnovers.
PF character Personal fouls.
PTS character Points scored.

CareerTotalsAllStarSeason

col_name types description
PLAYER_ID character Unique player identifier.
LEAGUE_ID character League identifier ('10' = WNBA).
TEAM_ID character Unique team identifier.
GP character Games played.
GS character Games started.
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
STL character Steals.
BLK character Blocks.
TOV character Turnovers.
PF character Personal fouls.
PTS character Points scored.

SeasonTotalsCollegeSeason

CareerTotalsCollegeSeason

SeasonTotalsPreseason

col_name types description
PLAYER_ID character Unique player identifier.
SEASON_ID character Unique season identifier.
LEAGUE_ID character League identifier ('10' = WNBA).
TEAM_ID character Unique team identifier.
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
PLAYER_AGE character
GP character Games played.
GS character Games started.
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
STL character Steals.
BLK character Blocks.
TOV character Turnovers.
PF character Personal fouls.
PTS character Points scored.

CareerTotalsPreseason

col_name types description
PLAYER_ID character Unique player identifier.
LEAGUE_ID character League identifier ('10' = WNBA).
TEAM_ID character Unique team identifier.
GP character Games played.
GS character Games started.
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
STL character Steals.
BLK character Blocks.
TOV character Turnovers.
PF character Personal fouls.
PTS character Points scored.

SeasonRankingsRegularSeason

col_name types description
PLAYER_ID character Unique player identifier.
SEASON_ID character Unique season identifier.
LEAGUE_ID character League identifier ('10' = WNBA).
TEAM_ID character Unique team identifier.
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
PLAYER_AGE character
GP character Games played.
GS character Games started.
RANK_MIN character
RANK_FGM character
RANK_FGA character
RANK_FG_PCT character
RANK_FG3M character
RANK_FG3A character
RANK_FG3_PCT character
RANK_FTM character
RANK_FTA character
RANK_FT_PCT character
RANK_OREB character
RANK_DREB character
RANK_REB character
RANK_AST character
RANK_STL character
RANK_BLK character
RANK_TOV character
RANK_PTS character
RANK_EFF character

SeasonRankingsPostSeason

col_name types description
PLAYER_ID character Unique player identifier.
SEASON_ID character Unique season identifier.
LEAGUE_ID character League identifier ('10' = WNBA).
TEAM_ID character Unique team identifier.
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
PLAYER_AGE character
GP character Games played.
GS character Games started.
RANK_MIN character
RANK_FGM character
RANK_FGA character
RANK_FG_PCT character
RANK_FG3M character
RANK_FG3A character
RANK_FG3_PCT character
RANK_FTM character
RANK_FTA character
RANK_FT_PCT character
RANK_OREB character
RANK_DREB character
RANK_REB character
RANK_AST character
RANK_STL character
RANK_BLK character
RANK_TOV character
RANK_PTS character
RANK_EFF character

SeasonHighs

col_name types description
PLAYER_ID character Unique player identifier.
GAME_ID character Unique game identifier.
GAME_DATE character Game date (YYYY-MM-DD).
VS_TEAM_ID character
VS_TEAM_CITY character
VS_TEAM_NAME character
VS_TEAM_ABBREVIATION character
STAT character
STAT_VALUE character Stat value.
STAT_ORDER character
DATE_EST character

CareerHighs

col_name types description
PLAYER_ID character Unique player identifier.
GAME_ID character Unique game identifier.
GAME_DATE character Game date (YYYY-MM-DD).
VS_TEAM_ID character
VS_TEAM_CITY character
VS_TEAM_NAME character
VS_TEAM_ABBREVIATION character
STAT character
STAT_VALUE character Stat value.
STAT_ORDER character
DATE_EST character

NextGame

col_name types description
GAME_ID character Unique game identifier.
GAME_DATE character Game date (YYYY-MM-DD).
GAME_TIME character Game start time.
LOCATION character Filter results by game location.
PLAYER_TEAM_ID character
PLAYER_TEAM_CITY character
PLAYER_TEAM_NICKNAME character
PLAYER_TEAM_ABBREVIATION character
VS_TEAM_ID character
VS_TEAM_CITY character
VS_TEAM_NICKNAME character
VS_TEAM_ABBREVIATION character

Author(s)

Saiem Gilani

See Also

Other WNBA Player Functions: wnba_infographicfanduelplayer(), wnba_leaguedashplayerbiostats(), wnba_leaguedashplayerclutch(), wnba_leaguedashplayershotlocations(), wnba_leaguedashplayerstats(), wnba_leagueplayerondetails(), wnba_leagueseasonmatchups(), wnba_playerawards(), wnba_playercareerbycollege(), wnba_playercareerbycollegerollup(), wnba_playercareerstats(), wnba_playercompare(), wnba_playerdashboardbyclutch(), wnba_playerdashboardbygamesplits(), wnba_playerdashboardbygeneralsplits(), wnba_playerdashboardbylastngames(), wnba_playerdashboardbyopponent(), wnba_playerdashboardbyshootingsplits(), wnba_playerdashboardbyteamperformance(), wnba_playerdashboardbyyearoveryear(), wnba_playerestimatedmetrics(), wnba_playerfantasyprofile(), wnba_playerfantasyprofilebargraph(), wnba_playergamelog(), wnba_playergamelogs(), wnba_playergamestreakfinder(), wnba_playerheadshot(), wnba_playerindex(), wnba_playernextngames(), wnba_playervsplayer()


Get WNBA Stats API Player vs Player

Description

Get WNBA Stats API Player vs Player

Get WNBA Stats API Player vs Player

Usage

wnba_playervsplayer(
  date_from = "",
  date_to = "",
  game_segment = "",
  last_n_games = 0,
  league_id = "10",
  location = "",
  measure_type = "Base",
  month = 0,
  opponent_team_id = 0,
  outcome = "",
  pace_adjust = "N",
  per_mode = "Totals",
  period = 0,
  player_id = "1628932",
  plus_minus = "N",
  rank = "N",
  season = most_recent_wnba_season() - 1,
  season_segment = "",
  season_type = "Regular Season",
  vs_conference = "",
  vs_division = "",
  vs_player_id = "1629488",
  ...
)

Arguments

date_from

date_from

date_to

date_to

game_segment

game_segment

last_n_games

last_n_games

league_id

League - default: '00'. Other options include '10': WWNBA, '20': G-League

location

location

measure_type

measure_type

month

month

opponent_team_id

opponent_team_id

outcome

outcome

pace_adjust

pace_adjust

per_mode

per_mode

period

period

player_id

Player ID

plus_minus

plus_minus

rank

rank

season

Season - format 2020-21

season_segment

season_segment

season_type

Season Type - Regular Season, Playoffs, All-Star

vs_conference

vs_conference

vs_division

vs_division

vs_player_id

vs_player_id

...

Additional arguments passed to an underlying function like httr.

Details

 wnba_playervsplayer(player_id = '1628932', vs_player_id = '1629488')

Value

Return a named list of data frames: OnOffCourt, Overall, PlayerInfo, ShotAreaOffCourt, ShotAreaOnCourt, ShotAreaOverall, ShotDistanceOffCourt, ShotDistanceOnCourt, ShotDistanceOverall, VsPlayerInfo

Overall

col_name types description
GROUP_SET character
GROUP_VALUE character
PLAYER_ID character Unique player identifier.
PLAYER_NAME character Player name.
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
WNBA_FANTASY_PTS character

OnOffCourt

col_name types description
GROUP_SET character
PLAYER_ID character Unique player identifier.
PLAYER_NAME character Player name.
VS_PLAYER_ID character
VS_PLAYER_NAME character
COURT_STATUS character
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
WNBA_FANTASY_PTS character

ShotDistanceOverall

col_name types description
GROUP_SET character
GROUP_VALUE character
PLAYER_ID character Unique player identifier.
PLAYER_NAME character Player name.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).

ShotDistanceOnCourt

col_name types description
GROUP_SET character
PLAYER_ID character Unique player identifier.
PLAYER_NAME character Player name.
VS_PLAYER_ID character
VS_PLAYER_NAME character
COURT_STATUS character
GROUP_VALUE character
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).

ShotDistanceOffCourt

col_name types description
GROUP_SET character
PLAYER_ID character Unique player identifier.
PLAYER_NAME character Player name.
VS_PLAYER_ID character
VS_PLAYER_NAME character
COURT_STATUS character
GROUP_VALUE character
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).

ShotAreaOverall

col_name types description
GROUP_SET character
GROUP_VALUE character
PLAYER_ID character Unique player identifier.
PLAYER_NAME character Player name.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).

ShotAreaOnCourt

col_name types description
GROUP_SET character
PLAYER_ID character Unique player identifier.
PLAYER_NAME character Player name.
VS_PLAYER_ID character
VS_PLAYER_NAME character
COURT_STATUS character
GROUP_VALUE character
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).

ShotAreaOffCourt

col_name types description
GROUP_SET character
PLAYER_ID character Unique player identifier.
PLAYER_NAME character Player name.
VS_PLAYER_ID character
VS_PLAYER_NAME character
COURT_STATUS character
GROUP_VALUE character
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).

PlayerInfo

col_name types description
PERSON_ID character Unique player identifier (V3 endpoints).
FIRST_NAME character Player's first name.
LAST_NAME character Player's last name.
DISPLAY_FIRST_LAST character
DISPLAY_LAST_COMMA_FIRST character
DISPLAY_FI_LAST character
BIRTHDATE character
SCHOOL character Player's school / college (when distinct from 'college').
COUNTRY character Country (full name or code).
LAST_AFFILIATION character

VsPlayerInfo

col_name types description
PERSON_ID character Unique player identifier (V3 endpoints).
FIRST_NAME character Player's first name.
LAST_NAME character Player's last name.
DISPLAY_FIRST_LAST character
DISPLAY_LAST_COMMA_FIRST character
DISPLAY_FI_LAST character
BIRTHDATE character
SCHOOL character Player's school / college (when distinct from 'college').
COUNTRY character Country (full name or code).
LAST_AFFILIATION character

Author(s)

Saiem Gilani

See Also

Other WNBA Player Functions: wnba_infographicfanduelplayer(), wnba_leaguedashplayerbiostats(), wnba_leaguedashplayerclutch(), wnba_leaguedashplayershotlocations(), wnba_leaguedashplayerstats(), wnba_leagueplayerondetails(), wnba_leagueseasonmatchups(), wnba_playerawards(), wnba_playercareerbycollege(), wnba_playercareerbycollegerollup(), wnba_playercareerstats(), wnba_playercompare(), wnba_playerdashboardbyclutch(), wnba_playerdashboardbygamesplits(), wnba_playerdashboardbygeneralsplits(), wnba_playerdashboardbylastngames(), wnba_playerdashboardbyopponent(), wnba_playerdashboardbyshootingsplits(), wnba_playerdashboardbyteamperformance(), wnba_playerdashboardbyyearoveryear(), wnba_playerestimatedmetrics(), wnba_playerfantasyprofile(), wnba_playerfantasyprofilebargraph(), wnba_playergamelog(), wnba_playergamelogs(), wnba_playergamestreakfinder(), wnba_playerheadshot(), wnba_playerindex(), wnba_playernextngames(), wnba_playerprofilev2()


Get WNBA Stats API Season Schedule

Description

Get WNBA Stats API Season Schedule

Get WNBA Stats API Season Schedule

Usage

wnba_schedule(league_id = "10", season = most_recent_wnba_season() - 1, ...)

Arguments

league_id

League - default: '00'. Other options include '10': WNBA, '20': G-League

season

Season

...

Additional arguments passed to an underlying function like httr.

Details

  wnba_schedule(league_id = '10', season = most_recent_wnba_season() - 1)

Value

Returns a tibble with the following columns:

col_name types description
game_date character Game date (YYYY-MM-DD).
game_id character Unique game identifier.
game_code character ESPN game code (numeric identifier).
game_status integer Game status label.
game_status_text character Game status display text (e.g. 'Final', '4:32 - 4th').
game_sequence integer Game sequence.
game_date_est character Game date est.
game_time_est character Game time est.
game_date_time_est character Game date time est.
game_date_utc character Game date utc.
game_time_utc character Game start time in UTC (ISO 8601 timestamp).
game_date_time_utc character Game date time utc.
away_team_time character Time / clock value.
home_team_time character Time / clock value.
day character Day number within the month.
month_num integer Month num.
week_number integer Week number.
week_name character Week name.
if_necessary character If necessary.
series_game_number character Series game number.
series_text character Series text.
arena_name character Arena name.
arena_state character Arena state.
arena_city character Arena city.
postponed_status character Postponed status.
branch_link character Branch link.
game_subtype character Game subtype.
home_team_id integer Unique identifier for the home team.
home_team_name character Home team name.
home_team_city character Home team city / location.
home_team_tricode character Home team three-letter code.
home_team_slug character Home team's team slug.
home_team_wins integer Home team's team wins.
home_team_losses integer Home team's team losses.
home_team_score integer Home team's score.
home_team_seed integer Home team's team seed.
away_team_id integer Unique identifier for the away team.
away_team_name character Away team name.
away_team_city character Away team city / location.
away_team_tricode character Away team three-letter code.
away_team_slug character Away team's team slug.
away_team_wins integer Away team's team wins.
away_team_losses integer Away team's team losses.
away_team_score integer Away team's score.
away_team_seed integer Away team's team seed.
season character Season identifier (4-digit year or 'YYYY-YY' string).
league_id character League identifier ('10' = WNBA).

Author(s)

Saiem Gilani

See Also

Other WNBA Schedule Functions: wnba_scoreboardv2(), wnba_scoreboardv3(), wnba_todays_scoreboard()


Get WNBA Stats API Scoreboard V2

Description

Get WNBA Stats API Scoreboard V2

Get WNBA Stats API Scoreboard V2

Usage

wnba_scoreboardv2(
  league_id = "10",
  game_date = "2022-07-20",
  day_offset = 0,
  ...
)

Arguments

league_id

League - default: '00'. Other options include '10': WWNBA, '20': G-League

game_date

Game Date, format: 2022/05/17

day_offset

Day Offset (integer 0,-1)

...

Additional arguments passed to an underlying function like httr.

Details

 wnba_scoreboardv2(league_id = '10', game_date = '2022-07-20')

Value

Return a named list of data frames: Available, EastConfStandingsByDay, GameHeader, LastMeeting, LineScore, SeriesStandings, TeamLeaders, TicketLinks, WestConfStandingsByDay, WinProbability

GameHeader

col_name types description
GAME_DATE_EST character Game date est.
GAME_SEQUENCE character Game sequence.
GAME_ID character Unique game identifier.
GAME_STATUS_ID character Numeric game status identifier.
GAME_STATUS_TEXT character Game status display text (e.g. 'Final', '4:32 - 4th').
GAMECODE character Gamecode.
HOME_TEAM_ID character Unique identifier for the home team.
VISITOR_TEAM_ID character Unique identifier for visitor team.
SEASON character Season identifier (4-digit year or 'YYYY-YY' string).
LIVE_PERIOD character Live period.
LIVE_PC_TIME character Time / clock value.
NATL_TV_BROADCASTER_ABBREVIATION character Natl tv broadcaster abbreviation.
HOME_TV_BROADCASTER_ABBREVIATION character Home team's tv broadcaster abbreviation.
AWAY_TV_BROADCASTER_ABBREVIATION character Away team's tv broadcaster abbreviation.
LIVE_PERIOD_TIME_BCAST character Live period time bcast.
ARENA_NAME character Arena name.
WH_STATUS character Wh status.
WNBA_COMMISSIONER_FLAG character

LineScore

col_name types description
GAME_DATE_EST character Game date est.
GAME_SEQUENCE character Game sequence.
GAME_ID character Unique game identifier.
TEAM_ID character Unique team identifier.
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
TEAM_CITY_NAME character Team city name.
TEAM_NAME character Full team display name (e.g. 'Las Vegas Aces').
TEAM_WINS_LOSSES character Team wins losses.
PTS_QTR1 character Pts qtr1.
PTS_QTR2 character Pts qtr2.
PTS_QTR3 character Pts qtr3.
PTS_QTR4 character Pts qtr4.
PTS_OT1 character Pts ot1.
PTS_OT2 character
PTS_OT3 character
PTS_OT4 character
PTS_OT5 character
PTS_OT6 character
PTS_OT7 character
PTS_OT8 character
PTS_OT9 character
PTS_OT10 character
PTS character Points scored.
FG_PCT character Field goal percentage (0-1).
FT_PCT character Free throw percentage (0-1).
FG3_PCT character Three-point field goal percentage (0-1).
AST character Assists.
REB character Total rebounds.
TOV character Turnovers.

SeriesStandings

col_name types description
GAME_ID character Unique game identifier.
HOME_TEAM_ID character Unique identifier for the home team.
VISITOR_TEAM_ID character Unique identifier for visitor team.
GAME_DATE_EST character Game date est.
HOME_TEAM_WINS character Home team's team wins.
HOME_TEAM_LOSSES character Home team's team losses.
SERIES_LEADER character

LastMeeting

col_name types description
GAME_ID character Unique game identifier.
LAST_GAME_ID character
LAST_GAME_DATE_EST character
LAST_GAME_HOME_TEAM_ID character
LAST_GAME_HOME_TEAM_CITY character
LAST_GAME_HOME_TEAM_NAME character
LAST_GAME_HOME_TEAM_ABBREVIATION character
LAST_GAME_HOME_TEAM_POINTS character
LAST_GAME_VISITOR_TEAM_ID character
LAST_GAME_VISITOR_TEAM_CITY character
LAST_GAME_VISITOR_TEAM_NAME character
LAST_GAME_VISITOR_TEAM_CITY1 character
LAST_GAME_VISITOR_TEAM_POINTS character

EastConfStandingsByDay

col_name types description
TEAM_ID character Unique team identifier.
LEAGUE_ID character League identifier ('10' = WNBA).
SEASON_ID character Unique season identifier.
STANDINGSDATE character
CONFERENCE character Filter players or teams by conference.
TEAM character Team-side label or team identifier.
G character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
HOME_RECORD character Home win-loss record.
ROAD_RECORD character Win-loss record for road.

WestConfStandingsByDay

col_name types description
TEAM_ID character Unique team identifier.
LEAGUE_ID character League identifier ('10' = WNBA).
SEASON_ID character Unique season identifier.
STANDINGSDATE character
CONFERENCE character Filter players or teams by conference.
TEAM character Team-side label or team identifier.
G character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
HOME_RECORD character Home win-loss record.
ROAD_RECORD character Win-loss record for road.

Available

col_name types description
GAME_ID character Unique game identifier.
PT_AVAILABLE character

TeamLeaders

col_name types description
GAME_ID character Unique game identifier.
TEAM_ID character Unique team identifier.
TEAM_CITY character Team city or region (e.g. 'Las Vegas').
TEAM_NICKNAME character Team nickname.
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
PTS_PLAYER_ID character
PTS_PLAYER_NAME character
PTS character Points scored.
REB_PLAYER_ID character
REB_PLAYER_NAME character
REB character Total rebounds.
AST_PLAYER_ID character
AST_PLAYER_NAME character
AST character Assists.

TicketLinks

WinProbability

Author(s)

Saiem Gilani

See Also

Other WNBA Schedule Functions: wnba_schedule(), wnba_scoreboardv3(), wnba_todays_scoreboard()


Get WNBA Stats API Scoreboard V3

Description

Get WNBA Stats API Scoreboard V3

Get WNBA Stats API Scoreboard V3

Usage

wnba_scoreboardv3(league_id = "10", game_date = "2022-06-26", ...)

Arguments

league_id

League - default: '00'. Other options include '10': WNBA, '20': G-League

game_date

Game Date

...

Additional arguments passed to an underlying function like httr.

Details

  wnba_scoreboardv3(league_id = '10', game_date = '2022-06-26')

Value

Return a tibble with the following scoreboard data:

col_name types description
game_id character Unique game identifier.
game_code character ESPN game code (numeric identifier).
game_status integer Game status label.
game_status_text character Game status display text (e.g. 'Final', '4:32 - 4th').
game_date character Game date (YYYY-MM-DD).
game_time_utc character Game start time in UTC (ISO 8601 timestamp).
game_et character Game et.
home_team_id integer Unique identifier for the home team.
home_team_name character Home team name.
home_team_city character Home team city / location.
home_team_tricode character Home team three-letter code.
home_team_slug character Home team's team slug.
away_team_id integer Unique identifier for the away team.
away_team_name character Away team name.
away_team_city character Away team city / location.
away_team_tricode character Away team three-letter code.
away_team_slug character Away team's team slug.
period integer Period of the game (1-4 quarters; 5+ for OT).
game_clock character Game clock.
regulation_periods integer Regulation periods.
series_game_number character Series game number.
series_text character Series text.
if_necessary logical If necessary.
series_conference character Series conference.
po_round_desc character Po round desc.
game_subtype character Game subtype.
game_home_leaders_person_id integer Unique identifier for game home leaders person.
game_home_leaders_name character Game home leaders name.
game_home_leaders_player_slug character Game home leaders player slug.
game_home_leaders_jersey_num character Game home leaders jersey num.
game_home_leaders_position character Game home leaders position.
game_home_leaders_team_tricode character Game home leaders team tricode.
game_home_leaders_points integer Game home leaders points.
game_home_leaders_rebounds integer Game home leaders rebounds.
game_home_leaders_assists integer Game home leaders assists.
game_away_leaders_person_id integer Unique identifier for game away leaders person.
game_away_leaders_name character Game away leaders name.
game_away_leaders_player_slug character Game away leaders player slug.
game_away_leaders_jersey_num character Game away leaders jersey num.
game_away_leaders_position character Game away leaders position.
game_away_leaders_team_tricode character Game away leaders team tricode.
game_away_leaders_points integer Game away leaders points.
game_away_leaders_rebounds integer Game away leaders rebounds.
game_away_leaders_assists integer Game away leaders assists.
team_home_leaders_person_id integer Unique identifier for team home leaders person.
team_home_leaders_name character Team home leaders name.
team_home_leaders_player_slug character Team home leaders player slug.
team_home_leaders_jersey_num character Team home leaders jersey num.
team_home_leaders_position character Team home leaders position.
team_home_leaders_team_tricode character Team home leaders team tricode.
team_home_leaders_points numeric Team home leaders points.
team_home_leaders_rebounds numeric Team home leaders rebounds.
team_home_leaders_assists numeric Team home leaders assists.
team_away_leaders_person_id integer Unique identifier for team away leaders person.
team_away_leaders_name character Team away leaders name.
team_away_leaders_player_slug character Team away leaders player slug.
team_away_leaders_jersey_num character Team away leaders jersey num.
team_away_leaders_position character Team away leaders position.
team_away_leaders_team_tricode character Team away leaders team tricode.
team_away_leaders_points numeric Team away leaders points.
team_away_leaders_rebounds numeric Team away leaders rebounds.
team_away_leaders_assists numeric Team away leaders assists.
team_season_leaders_flag integer Team season leaders flag.
home_wins integer Home team's wins.
home_losses integer Home team's losses.
home_score integer Home team score at the time of the play.
home_seed integer Home team's seed.
home_in_bonus logical Home team's in bonus.
home_timeouts_remaining integer Home team's timeouts remaining.
home_periods list Home team's periods.
away_wins integer Away team's wins.
away_losses integer Away team's losses.
away_score integer Away team score at the time of the play.
away_seed integer Away team's seed.
away_in_bonus logical Away team's in bonus.
away_timeouts_remaining integer Away team's timeouts remaining.
away_periods list Away team's periods.
league_id character League identifier ('10' = WNBA).
league character League.
broadcasters data.frame

Author(s)

Saiem Gilani

See Also

Other WNBA Schedule Functions: wnba_schedule(), wnba_scoreboardv2(), wnba_todays_scoreboard()


Get WNBA Stats API Shot Chart Detail

Description

Get WNBA Stats API Shot Chart Detail

Get WNBA Stats API Shot Chart Detail

Usage

wnba_shotchartdetail(
  context_measure = "FGA",
  date_from = "",
  date_to = "",
  game_id = "",
  game_segment = "",
  last_n_games = 0,
  league_id = "10",
  location = "",
  month = 0,
  opponent_team_id = 0,
  outcome = "",
  period = 0,
  player_id = "1628932",
  player_position = "",
  rookie_year = "",
  season = most_recent_wnba_season() - 1,
  season_segment = "",
  season_type = "Regular Season",
  team_id = 0,
  vs_conference = "",
  vs_division = "",
  ...
)

Arguments

context_measure

context_measure

date_from

date_from

date_to

date_to

game_id

game_id

game_segment

game_segment

last_n_games

last_n_games

league_id

league_id

location

location

month

month

opponent_team_id

opponent_team_id

outcome

outcome

period

period

player_id

player_id

player_position

player_position

rookie_year

rookie_year

season

season

season_segment

season_segment

season_type

season_type

team_id

team_id

vs_conference

vs_conference

vs_division

vs_division

...

Additional arguments passed to an underlying function like httr.

Details

 wnba_shotchartdetail(league_id = '10', player_id = '1628932', season = most_recent_wnba_season() - 1)

Value

Return a named list of data frames: LeagueAverages, Shot_Chart_Detail

Shot_Chart_Detail

col_name types description
GRID_TYPE character
GAME_ID character Unique game identifier.
GAME_EVENT_ID character Unique identifier for game event.
PLAYER_ID character Unique player identifier.
PLAYER_NAME character Player name.
TEAM_ID character Unique team identifier.
TEAM_NAME character Full team display name (e.g. 'Las Vegas Aces').
PERIOD character Period of the game (1-4 quarters; 5+ for OT).
MINUTES_REMAINING character Minutes remaining.
SECONDS_REMAINING character Seconds remaining in the period.
EVENT_TYPE character Event / play type code (V2 PBP).
ACTION_TYPE character Action type label (e.g. 'Made Shot', 'Substitution').
SHOT_TYPE character Shot type label (e.g. 'Jump Shot', 'Layup').
SHOT_ZONE_BASIC character Shot zone (e.g. 'Restricted Area', 'Mid-Range', 'Above the Break 3').
SHOT_ZONE_AREA character Shot zone area ('Left Side', 'Right Side', 'Center').
SHOT_ZONE_RANGE character Shot zone range ('Less Than 8 ft.', '8-16 ft.', '16-24 ft.', etc.).
SHOT_DISTANCE character Shot distance from the basket, in feet.
LOC_X character X coordinate on the court (units of inches; 0 = basket center).
LOC_Y character Y coordinate on the court (units of inches; baseline at 0).
SHOT_ATTEMPTED_FLAG character 1 if a shot was attempted on this event.
SHOT_MADE_FLAG character 1 if the shot was made; 0 if missed.
GAME_DATE character Game date (YYYY-MM-DD).
HTM character
VTM character

LeagueAverages

col_name types description
GRID_TYPE character
SHOT_ZONE_BASIC character Shot zone (e.g. 'Restricted Area', 'Mid-Range', 'Above the Break 3').
SHOT_ZONE_AREA character Shot zone area ('Left Side', 'Right Side', 'Center').
SHOT_ZONE_RANGE character Shot zone range ('Less Than 8 ft.', '8-16 ft.', '16-24 ft.', etc.).
FGA character Field goal attempts.
FGM character Field goals made.
FG_PCT character Field goal percentage (0-1).

Author(s)

Saiem Gilani

See Also

Other WNBA Shooting Functions: wnba_leaguedashplayershotlocations(), wnba_leaguedashteamshotlocations(), wnba_playerdashboardbyshootingsplits(), wnba_shotchartleaguewide(), wnba_shotchartlineupdetail(), wnba_teamdashboardbyshootingsplits()


Get WNBA Stats API Shot Chart League-Wide

Description

Get WNBA Stats API Shot Chart League-Wide

Get WNBA Stats API Shot Chart League-Wide

Usage

wnba_shotchartleaguewide(
  league_id = "10",
  season = most_recent_wnba_season() - 1,
  ...
)

Arguments

league_id

League - default: '10'. Other options include '00': NBA, '20': G-League

season

season

...

Additional arguments passed to an underlying function like httr.

Details

 wnba_shotchartleaguewide(league_id = '10', season = most_recent_wnba_season() - 1)

Value

Return a named list of data frames: League_Wide

League_Wide

col_name types description
GRID_TYPE character
SHOT_ZONE_BASIC character Shot zone (e.g. 'Restricted Area', 'Mid-Range', 'Above the Break 3').
SHOT_ZONE_AREA character Shot zone area ('Left Side', 'Right Side', 'Center').
SHOT_ZONE_RANGE character Shot zone range ('Less Than 8 ft.', '8-16 ft.', '16-24 ft.', etc.).
FGA character Field goal attempts.
FGM character Field goals made.
FG_PCT character Field goal percentage (0-1).

Author(s)

Saiem Gilani

See Also

Other WNBA Shooting Functions: wnba_leaguedashplayershotlocations(), wnba_leaguedashteamshotlocations(), wnba_playerdashboardbyshootingsplits(), wnba_shotchartdetail(), wnba_shotchartlineupdetail(), wnba_teamdashboardbyshootingsplits()

Other WNBA League Functions: wnba_leaguedashlineups(), wnba_leaguedashplayerbiostats(), wnba_leaguedashplayerclutch(), wnba_leaguedashplayershotlocations(), wnba_leaguedashplayerstats(), wnba_leaguedashteamclutch(), wnba_leaguedashteamshotlocations(), wnba_leaguedashteamstats(), wnba_leaguegamefinder(), wnba_leaguegamelog(), wnba_leaguelineupviz(), wnba_leagueplayerondetails(), wnba_leagueseasonmatchups(), wnba_leaguestandingsv3()


Get WNBA Stats API Shot Chart for Lineups

Description

Get WNBA Stats API Shot Chart for Lineups

Get WNBA Stats API Shot Chart for Lineups

Usage

wnba_shotchartlineupdetail(
  ahead_behind = "",
  cfid = "",
  cfparams = "",
  clutch_time = "",
  conference = "",
  context_filter = "",
  context_measure = "FGA",
  date_from = "",
  date_to = "",
  division = "",
  end_period = "10",
  end_range = "28800",
  group_id = "-1628899-1629481-1630096-1631019-1642784-",
  game_event_id = "",
  game_id = "",
  game_segment = "",
  group_mode = "",
  group_quantity = "5",
  last_n_games = "0",
  league_id = "10",
  location = "",
  month = "0",
  on_off = "",
  opp_player_id = "",
  opponent_team_id = "0",
  outcome = "",
  po_round = "0",
  period = "0",
  player_id = "0",
  player_id1 = "",
  player_id2 = "",
  player_id3 = "",
  player_id4 = "",
  player_id5 = "",
  player_position = "",
  point_diff = "",
  position = "",
  range_type = "0",
  rookie_year = "",
  season = most_recent_wnba_season(),
  season_segment = "",
  season_type = "Regular Season",
  shot_clock_range = "",
  start_period = "1",
  start_range = "0",
  starter_bench = "",
  team_id = "1611661321",
  vs_conference = "",
  vs_division = "",
  vs_player_id1 = "",
  vs_player_id2 = "",
  vs_player_id3 = "",
  vs_player_id4 = "",
  vs_player_id5 = "",
  vs_team_id = "",
  ...
)

Arguments

ahead_behind

ahead_behind

cfid

cfid

cfparams

cfparams

clutch_time

clutch_time

conference

conference

context_filter

context_filter

context_measure

context_measure

date_from

date_from

date_to

date_to

division

division

end_period

end_period

end_range

end_range

group_id

group_id

game_event_id

game_event_id

game_id

game_id

game_segment

game_segment

group_mode

group_mode

group_quantity

group_quantity

last_n_games

last_n_games

league_id

league_id

location

location

month

month

on_off

on_off

opp_player_id

opp_player_id

opponent_team_id

opponent_team_id

outcome

outcome

po_round

po_round

period

period

player_id

player_id

player_id1

player_id1

player_id2

player_id2

player_id3

player_id3

player_id4

player_id4

player_id5

player_id5

player_position

player_position

point_diff

point_diff

position

position

range_type

range_type

rookie_year

rookie_year

season

season

season_segment

season_segment

season_type

season_type

shot_clock_range

shot_clock_range

start_period

start_period

start_range

start_range

starter_bench

starter_bench

team_id

team_id

vs_conference

vs_conference

vs_division

vs_division

vs_player_id1

vs_player_id1

vs_player_id2

vs_player_id2

vs_player_id3

vs_player_id3

vs_player_id4

vs_player_id4

vs_player_id5

vs_player_id5

vs_team_id

vs_team_id

...

Additional arguments passed to an underlying function like httr.

Details

 wnba_shotchartlineupdetail(group_id = '-1628899-1629481-1630096-1631019-1642784-', opponent_team_id = '1611661324', season = most_recent_wnba_season())

Value

Return a named list of data frames: ShotChartLineupDetail, ShotChartLineupLeagueAverage

ShotChartLineupDetail

col_name types description
GRID_TYPE character
GAME_ID character Unique game identifier.
GAME_EVENT_ID character Unique identifier for game event.
GROUP_ID character Group identifier (e.g. conference group_id).
GROUP_NAME character Group name.
PLAYER_ID character Unique player identifier.
PLAYER_NAME character Player name.
TEAM_ID character Unique team identifier.
TEAM_NAME character Full team display name (e.g. 'Las Vegas Aces').
PERIOD character Period of the game (1-4 quarters; 5+ for OT).
MINUTES_REMAINING character Minutes remaining.
SECONDS_REMAINING character Seconds remaining in the period.
EVENT_TYPE character Event / play type code (V2 PBP).
ACTION_TYPE character Action type label (e.g. 'Made Shot', 'Substitution').
SHOT_TYPE character Shot type label (e.g. 'Jump Shot', 'Layup').
SHOT_ZONE_BASIC character Shot zone (e.g. 'Restricted Area', 'Mid-Range', 'Above the Break 3').
SHOT_ZONE_AREA character Shot zone area ('Left Side', 'Right Side', 'Center').
SHOT_ZONE_RANGE character Shot zone range ('Less Than 8 ft.', '8-16 ft.', '16-24 ft.', etc.).
SHOT_DISTANCE character Shot distance from the basket, in feet.
LOC_X character X coordinate on the court (units of inches; 0 = basket center).
LOC_Y character Y coordinate on the court (units of inches; baseline at 0).
SHOT_ATTEMPTED_FLAG character 1 if a shot was attempted on this event.
SHOT_MADE_FLAG character 1 if the shot was made; 0 if missed.
GAME_DATE character Game date (YYYY-MM-DD).
HTM character
VTM character

ShotChartLineupLeagueAverage

col_name types description
GRID_TYPE character
SHOT_ZONE_BASIC character Shot zone (e.g. 'Restricted Area', 'Mid-Range', 'Above the Break 3').
SHOT_ZONE_AREA character Shot zone area ('Left Side', 'Right Side', 'Center').
SHOT_ZONE_RANGE character Shot zone range ('Less Than 8 ft.', '8-16 ft.', '16-24 ft.', etc.).
FGA character Field goal attempts.
FGM character Field goals made.
FG_PCT character Field goal percentage (0-1).

Author(s)

Saiem Gilani

See Also

Other WNBA Shooting Functions: wnba_leaguedashplayershotlocations(), wnba_leaguedashteamshotlocations(), wnba_playerdashboardbyshootingsplits(), wnba_shotchartdetail(), wnba_shotchartleaguewide(), wnba_teamdashboardbyshootingsplits()

Other WNBA Lineup Functions: wnba_gamerotation(), wnba_leaguedashlineups(), wnba_leaguelineupviz(), wnba_teamdashlineups()


WNBA Stats API Endpoint Overview

Description

Wrappers around the WNBA Stats backend at stats.wnba.com/stats/.... All requests go through request_with_proxy() in utils_wnba_stats.R which sets the required WNBA-side headers (⁠Origin: https://stats.wnba.com⁠, ⁠Referer: https://www.wnba.com/⁠) and threads a proxy via getOption("wehoop.proxy") / env vars / explicit ⁠proxy =⁠ arg.

WNBA-specific differences vs the NBA Stats API: quarters are 10 minutes (not 12), regulation is 40 minutes (not 48), game IDs start with "10", LeagueID = "10".

Details

Boxscores (V2)

Tabular resultSets[] responses parsed via wnba_stats_map_result_sets(). See wnba_boxscoreadvancedv2(), wnba_boxscoretraditionalv2(), wnba_boxscorefourfactorsv2(), wnba_boxscoremiscv2(), wnba_boxscoreplayertrackv2(), wnba_boxscorescoringv2(), wnba_boxscoresummaryv2(), wnba_boxscoreusagev2(), wnba_hustlestatsboxscore().

Boxscores (V3)

Nested JSON parsed via purrr::pluck(). See wnba_boxscoreadvancedv3(), wnba_boxscoretraditionalv3(), wnba_boxscorefourfactorsv3(), wnba_boxscoremiscv3(), wnba_boxscoreplayertrackv3(), wnba_boxscorescoringv3(), wnba_boxscoreusagev3().

Play-by-play

Function Purpose
wnba_pbp() V2 + V3 PBP (with V3-to-V2 conversion pipeline)
wnba_pbps() Multi-game PBP loader
wnba_playbyplayv3() V3-only PBP

Leaders, standings, league

wnba_leagueleaders(), wnba_leaguestandingsv3(), wnba_homepageleaders(), wnba_leaderstiles().

Player + team season + game stats

Full per-mode / per-split families. Search the reference index for ⁠wnba_playerdashboard*⁠, ⁠wnba_teamdashboard*⁠, wnba_leaguedashplayerstats(), wnba_leaguedashteamstats(), wnba_playergamelogs(), wnba_teamgamelogs(), ⁠wnba_playerprofile*⁠.

Schedule + scoreboard

wnba_schedule(), wnba_scoreboard(), wnba_scoreboardv2(), wnba_scoreboardv3(), wnba_todays_scoreboard().

Draft + franchise + reference

wnba_draftboard(), wnba_drafthistory(), wnba_draftcombinestats(), wnba_franchisehistory(), wnba_franchiseleaders().


Get WNBA Stats API Team Dashboard by Clutch Splits

Description

Get WNBA Stats API Team Dashboard by Clutch Splits

Get WNBA Stats API Team Dashboard by Clutch Splits

Usage

wnba_teamdashboardbyclutch(
  date_from = "",
  date_to = "",
  game_segment = "",
  last_n_games = 0,
  league_id = "10",
  location = "",
  measure_type = "Base",
  month = 0,
  opponent_team_id = 0,
  outcome = "",
  pace_adjust = "N",
  plus_minus = "N",
  po_round = "",
  per_mode = "Totals",
  period = 0,
  rank = "N",
  season = most_recent_wnba_season(),
  season_segment = "",
  season_type = "Regular Season",
  shot_clock_range = "",
  team_id = "1611661328",
  vs_conference = "",
  vs_division = "",
  ...
)

Arguments

date_from

date_from

date_to

date_to

game_segment

game_segment

last_n_games

last_n_games

league_id

league_id

location

location

measure_type

measure_type

month

month

opponent_team_id

opponent_team_id

outcome

outcome

pace_adjust

pace_adjust

plus_minus

plus_minus

po_round

po_round

per_mode

per_mode

period

period

rank

rank

season

season

season_segment

season_segment

season_type

season_type

shot_clock_range

shot_clock_range

team_id

team_id

vs_conference

vs_conference

vs_division

vs_division

...

Additional arguments passed to an underlying function like httr.

Details

  wnba_teamdashboardbyclutch(team_id = '1611661328', season = most_recent_wnba_season())

Value

Return a named list of data frames: Last10Sec3Point2TeamDashboard, Last10Sec3PointTeamDashboard, Last1Min5PointTeamDashboard, Last1MinPlusMinus5PointTeamDashboard, Last30Sec3Point2TeamDashboard, Last30Sec3PointTeamDashboard, Last3Min5PointTeamDashboard, Last3MinPlusMinus5PointTeamDashboard, Last5Min5PointTeamDashboard, Last5MinPlusMinus5PointTeamDashboard, OverallTeamDashboard

OverallTeamDashboard

col_name types description
GROUP_SET character
GROUP_VALUE character
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character

Last5Min5PointTeamDashboard

col_name types description
GROUP_SET character
GROUP_VALUE character
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character

Last3Min5PointTeamDashboard

col_name types description
GROUP_SET character
GROUP_VALUE character
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character

Last1Min5PointTeamDashboard

col_name types description
GROUP_SET character
GROUP_VALUE character
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character

Last30Sec3PointTeamDashboard

col_name types description
GROUP_SET character
GROUP_VALUE character
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character

Last10Sec3PointTeamDashboard

col_name types description
GROUP_SET character
GROUP_VALUE character
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character

Last5MinPlusMinus5PointTeamDashboard

col_name types description
GROUP_SET character
GROUP_VALUE character
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character

Last3MinPlusMinus5PointTeamDashboard

col_name types description
GROUP_SET character
GROUP_VALUE character
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character

Last1MinPlusMinus5PointTeamDashboard

col_name types description
GROUP_SET character
GROUP_VALUE character
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character

Last30Sec3Point2TeamDashboard

col_name types description
GROUP_SET character
GROUP_VALUE character
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character

Last10Sec3Point2TeamDashboard

col_name types description
GROUP_SET character
GROUP_VALUE character
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character

Author(s)

Saiem Gilani

See Also

Other WNBA Team Functions: wnba_leaguedashteamstats(), wnba_teamdashboardbygamesplits(), wnba_teamdashboardbygeneralsplits(), wnba_teamdashboardbylastngames(), wnba_teamdashboardbyopponent(), wnba_teamdashboardbyshootingsplits(), wnba_teamdashboardbyteamperformance(), wnba_teamdashboardbyyearoveryear(), wnba_teamdashlineups(), wnba_teamdetails(), wnba_teamestimatedmetrics(), wnba_teamgamelog(), wnba_teamgamelogs(), wnba_teamgamestreakfinder(), wnba_teamhistoricalleaders(), wnba_teaminfocommon(), wnba_teamplayerdashboard(), wnba_teamplayeronoffdetails(), wnba_teamplayeronoffsummary(), wnba_teams(), wnba_teamvsplayer(), wnba_teamyearbyyearstats()

Other WNBA Clutch Functions: wnba_leaguedashteamclutch(), wnba_playerdashboardbyclutch()


Get WNBA Stats API Team Dashboard by Game Splits

Description

Get WNBA Stats API Team Dashboard by Game Splits

Get WNBA Stats API Team Dashboard by Game Splits

Usage

wnba_teamdashboardbygamesplits(
  date_from = "",
  date_to = "",
  game_segment = "",
  last_n_games = 0,
  league_id = "10",
  location = "",
  measure_type = "Base",
  month = 0,
  opponent_team_id = 0,
  outcome = "",
  pace_adjust = "N",
  plus_minus = "N",
  po_round = "",
  per_mode = "Totals",
  period = 0,
  rank = "N",
  season = most_recent_wnba_season(),
  season_segment = "",
  season_type = "Regular Season",
  shot_clock_range = "",
  team_id = "1611661328",
  vs_conference = "",
  vs_division = "",
  ...
)

Arguments

date_from

date_from

date_to

date_to

game_segment

game_segment

last_n_games

last_n_games

league_id

league_id

location

location

measure_type

measure_type

month

month

opponent_team_id

opponent_team_id

outcome

outcome

pace_adjust

pace_adjust

plus_minus

plus_minus

po_round

po_round

per_mode

per_mode

period

period

rank

rank

season

season

season_segment

season_segment

season_type

season_type

shot_clock_range

shot_clock_range

team_id

team_id

vs_conference

vs_conference

vs_division

vs_division

...

Additional arguments passed to an underlying function like httr.

Details

  wnba_teamdashboardbygamesplits(team_id = '1611661328', season = most_recent_wnba_season())

Value

Return a named list of data frames: ByActualMarginTeamDashboard, ByHalfTeamDashboard, ByPeriodTeamDashboard, ByScoreMarginTeamDashboard, OverallTeamDashboard

OverallTeamDashboard

col_name types description
GROUP_SET character
GROUP_VALUE character
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character

ByHalfTeamDashboard

col_name types description
GROUP_SET character
GROUP_VALUE character
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character

ByPeriodTeamDashboard

col_name types description
GROUP_SET character
GROUP_VALUE character
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character

ByScoreMarginTeamDashboard

col_name types description
GROUP_SET character
GROUP_VALUE character
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character

ByActualMarginTeamDashboard

col_name types description
GROUP_SET character
GROUP_VALUE character
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character

Author(s)

Saiem Gilani

See Also

Other WNBA Team Functions: wnba_leaguedashteamstats(), wnba_teamdashboardbyclutch(), wnba_teamdashboardbygeneralsplits(), wnba_teamdashboardbylastngames(), wnba_teamdashboardbyopponent(), wnba_teamdashboardbyshootingsplits(), wnba_teamdashboardbyteamperformance(), wnba_teamdashboardbyyearoveryear(), wnba_teamdashlineups(), wnba_teamdetails(), wnba_teamestimatedmetrics(), wnba_teamgamelog(), wnba_teamgamelogs(), wnba_teamgamestreakfinder(), wnba_teamhistoricalleaders(), wnba_teaminfocommon(), wnba_teamplayerdashboard(), wnba_teamplayeronoffdetails(), wnba_teamplayeronoffsummary(), wnba_teams(), wnba_teamvsplayer(), wnba_teamyearbyyearstats()


Get WNBA Stats API Team Dashboard by General Splits

Description

Get WNBA Stats API Team Dashboard by General Splits

Get WNBA Stats API Team Dashboard by General Splits

Usage

wnba_teamdashboardbygeneralsplits(
  date_from = "",
  date_to = "",
  game_segment = "",
  last_n_games = 0,
  league_id = "10",
  location = "",
  measure_type = "Base",
  month = 0,
  opponent_team_id = 0,
  outcome = "",
  pace_adjust = "N",
  plus_minus = "N",
  po_round = "",
  per_mode = "Totals",
  period = 0,
  rank = "N",
  season = most_recent_wnba_season(),
  season_segment = "",
  season_type = "Regular Season",
  shot_clock_range = "",
  team_id = "1611661328",
  vs_conference = "",
  vs_division = "",
  ...
)

Arguments

date_from

date_from

date_to

date_to

game_segment

game_segment

last_n_games

last_n_games

league_id

league_id

location

location

measure_type

measure_type

month

month

opponent_team_id

opponent_team_id

outcome

outcome

pace_adjust

pace_adjust

plus_minus

plus_minus

po_round

po_round

per_mode

per_mode

period

period

rank

rank

season

season

season_segment

season_segment

season_type

season_type

shot_clock_range

shot_clock_range

team_id

team_id

vs_conference

vs_conference

vs_division

vs_division

...

Additional arguments passed to an underlying function like httr.

Details

  wnba_teamdashboardbygeneralsplits(team_id = '1611661328', season = most_recent_wnba_season())

Value

Return a named list of data frames: DaysRestTeamDashboard, LocationTeamDashboard, MonthTeamDashboard, OverallTeamDashboard, PrePostAllStarTeamDashboard, WinsLossesTeamDashboard

OverallTeamDashboard

col_name types description
GROUP_SET character
GROUP_VALUE character
SEASON_YEAR character Season year string ('YYYY-YY' format).
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character

LocationTeamDashboard

col_name types description
GROUP_SET character
GROUP_VALUE character
TEAM_GAME_LOCATION character
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character

WinsLossesTeamDashboard

col_name types description
GROUP_SET character
GROUP_VALUE character
GAME_RESULT character
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character

MonthTeamDashboard

col_name types description
GROUP_SET character
GROUP_VALUE character
SEASON_MONTH_NAME character
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character

PrePostAllStarTeamDashboard

col_name types description
GROUP_SET character
GROUP_VALUE character
SEASON_SEGMENT character Season segment filter ('Pre All-Star' / 'Post All-Star').
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character

DaysRestTeamDashboard

col_name types description
GROUP_SET character
GROUP_VALUE character
TEAM_DAYS_REST_RANGE character
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character

Author(s)

Saiem Gilani

See Also

Other WNBA Team Functions: wnba_leaguedashteamstats(), wnba_teamdashboardbyclutch(), wnba_teamdashboardbygamesplits(), wnba_teamdashboardbylastngames(), wnba_teamdashboardbyopponent(), wnba_teamdashboardbyshootingsplits(), wnba_teamdashboardbyteamperformance(), wnba_teamdashboardbyyearoveryear(), wnba_teamdashlineups(), wnba_teamdetails(), wnba_teamestimatedmetrics(), wnba_teamgamelog(), wnba_teamgamelogs(), wnba_teamgamestreakfinder(), wnba_teamhistoricalleaders(), wnba_teaminfocommon(), wnba_teamplayerdashboard(), wnba_teamplayeronoffdetails(), wnba_teamplayeronoffsummary(), wnba_teams(), wnba_teamvsplayer(), wnba_teamyearbyyearstats()


Get WNBA Stats API Team Dashboard by Last N Games

Description

Get WNBA Stats API Team Dashboard by Last N Games

Get WNBA Stats API Team Dashboard by Last N Games

Usage

wnba_teamdashboardbylastngames(
  date_from = "",
  date_to = "",
  game_segment = "",
  last_n_games = 0,
  league_id = "10",
  location = "",
  measure_type = "Base",
  month = 0,
  opponent_team_id = 0,
  outcome = "",
  pace_adjust = "N",
  plus_minus = "N",
  po_round = "",
  per_mode = "Totals",
  period = 0,
  rank = "N",
  season = most_recent_wnba_season(),
  season_segment = "",
  season_type = "Regular Season",
  shot_clock_range = "",
  team_id = "1611661328",
  vs_conference = "",
  vs_division = "",
  ...
)

Arguments

date_from

date_from

date_to

date_to

game_segment

game_segment

last_n_games

last_n_games

league_id

league_id

location

location

measure_type

measure_type

month

month

opponent_team_id

opponent_team_id

outcome

outcome

pace_adjust

pace_adjust

plus_minus

plus_minus

po_round

po_round

per_mode

per_mode

period

period

rank

rank

season

season

season_segment

season_segment

season_type

season_type

shot_clock_range

shot_clock_range

team_id

team_id

vs_conference

vs_conference

vs_division

vs_division

...

Additional arguments passed to an underlying function like httr.

Details

  wnba_teamdashboardbylastngames(team_id = '1611661328', season = most_recent_wnba_season())

Value

Return a named list of data frames: GameNumberTeamDashboard, Last10TeamDashboard, Last15TeamDashboard, Last20TeamDashboard, Last5TeamDashboard, OverallTeamDashboard

OverallTeamDashboard

col_name types description
GROUP_SET character
GROUP_VALUE character
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character

Last5TeamDashboard

col_name types description
GROUP_SET character
GROUP_VALUE character
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character

Last10TeamDashboard

col_name types description
GROUP_SET character
GROUP_VALUE character
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character

Last15TeamDashboard

col_name types description
GROUP_SET character
GROUP_VALUE character
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character

Last20TeamDashboard

col_name types description
GROUP_SET character
GROUP_VALUE character
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character

GameNumberTeamDashboard

col_name types description
GROUP_SET character
GROUP_VALUE character
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character

Author(s)

Saiem Gilani

See Also

Other WNBA Team Functions: wnba_leaguedashteamstats(), wnba_teamdashboardbyclutch(), wnba_teamdashboardbygamesplits(), wnba_teamdashboardbygeneralsplits(), wnba_teamdashboardbyopponent(), wnba_teamdashboardbyshootingsplits(), wnba_teamdashboardbyteamperformance(), wnba_teamdashboardbyyearoveryear(), wnba_teamdashlineups(), wnba_teamdetails(), wnba_teamestimatedmetrics(), wnba_teamgamelog(), wnba_teamgamelogs(), wnba_teamgamestreakfinder(), wnba_teamhistoricalleaders(), wnba_teaminfocommon(), wnba_teamplayerdashboard(), wnba_teamplayeronoffdetails(), wnba_teamplayeronoffsummary(), wnba_teams(), wnba_teamvsplayer(), wnba_teamyearbyyearstats()


Get WNBA Stats API Team Dashboard by Opponent

Description

Get WNBA Stats API Team Dashboard by Opponent

Get WNBA Stats API Team Dashboard by Opponent

Usage

wnba_teamdashboardbyopponent(
  date_from = "",
  date_to = "",
  game_segment = "",
  last_n_games = 0,
  league_id = "10",
  location = "",
  measure_type = "Base",
  month = 0,
  opponent_team_id = 0,
  outcome = "",
  pace_adjust = "N",
  plus_minus = "N",
  po_round = "",
  per_mode = "Totals",
  period = 0,
  rank = "N",
  season = most_recent_wnba_season(),
  season_segment = "",
  season_type = "Regular Season",
  shot_clock_range = "",
  team_id = "1611661328",
  vs_conference = "",
  vs_division = "",
  ...
)

Arguments

date_from

date_from

date_to

date_to

game_segment

game_segment

last_n_games

last_n_games

league_id

league_id

location

location

measure_type

measure_type

month

month

opponent_team_id

opponent_team_id

outcome

outcome

pace_adjust

pace_adjust

plus_minus

plus_minus

po_round

po_round

per_mode

per_mode

period

period

rank

rank

season

season

season_segment

season_segment

season_type

season_type

shot_clock_range

shot_clock_range

team_id

team_id

vs_conference

vs_conference

vs_division

vs_division

...

Additional arguments passed to an underlying function like httr.

Details

  wnba_teamdashboardbyopponent(team_id = '1611661328', season = most_recent_wnba_season())

Value

Return a named list of data frames: ConferenceTeamDashboard, DivisionTeamDashboard, OpponentTeamDashboard, OverallTeamDashboard

OverallTeamDashboard

col_name types description
GROUP_SET character
GROUP_VALUE character
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character

ConferenceTeamDashboard

col_name types description
GROUP_SET character
GROUP_VALUE character
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character

DivisionTeamDashboard

col_name types description
GROUP_SET character
GROUP_VALUE character
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character

OpponentTeamDashboard

col_name types description
GROUP_SET character
GROUP_VALUE character
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character

Author(s)

Saiem Gilani

See Also

Other WNBA Team Functions: wnba_leaguedashteamstats(), wnba_teamdashboardbyclutch(), wnba_teamdashboardbygamesplits(), wnba_teamdashboardbygeneralsplits(), wnba_teamdashboardbylastngames(), wnba_teamdashboardbyshootingsplits(), wnba_teamdashboardbyteamperformance(), wnba_teamdashboardbyyearoveryear(), wnba_teamdashlineups(), wnba_teamdetails(), wnba_teamestimatedmetrics(), wnba_teamgamelog(), wnba_teamgamelogs(), wnba_teamgamestreakfinder(), wnba_teamhistoricalleaders(), wnba_teaminfocommon(), wnba_teamplayerdashboard(), wnba_teamplayeronoffdetails(), wnba_teamplayeronoffsummary(), wnba_teams(), wnba_teamvsplayer(), wnba_teamyearbyyearstats()


Get WNBA Stats API Team Dashboard by Shooting Splits

Description

Get WNBA Stats API Team Dashboard by Shooting Splits

Get WNBA Stats API Team Dashboard by Shooting Splits

Usage

wnba_teamdashboardbyshootingsplits(
  date_from = "",
  date_to = "",
  game_segment = "",
  last_n_games = 0,
  league_id = "10",
  location = "",
  measure_type = "Base",
  month = 0,
  opponent_team_id = 0,
  outcome = "",
  pace_adjust = "N",
  plus_minus = "N",
  po_round = "",
  per_mode = "Totals",
  period = 0,
  rank = "N",
  season = most_recent_wnba_season(),
  season_segment = "",
  season_type = "Regular Season",
  shot_clock_range = "",
  team_id = "1611661328",
  vs_conference = "",
  vs_division = "",
  ...
)

Arguments

date_from

date_from

date_to

date_to

game_segment

game_segment

last_n_games

last_n_games

league_id

league_id

location

location

measure_type

measure_type

month

month

opponent_team_id

opponent_team_id

outcome

outcome

pace_adjust

pace_adjust

plus_minus

plus_minus

po_round

po_round

per_mode

per_mode

period

period

rank

rank

season

season

season_segment

season_segment

season_type

season_type

shot_clock_range

shot_clock_range

team_id

team_id

vs_conference

vs_conference

vs_division

vs_division

...

Additional arguments passed to an underlying function like httr.

Details

Team Dashboard by Shooting Splits

  wnba_teamdashboardbyshootingsplits(team_id = '1611661328', season = most_recent_wnba_season())

Value

Return a named list of data frames: AssistedBy, AssitedShotTeamDashboard, OverallTeamDashboard, Shot5FTTeamDashboard, Shot8FTTeamDashboard, ShotAreaTeamDashboard, ShotTypeTeamDashboard

OverallTeamDashboard

col_name types description
GROUP_SET character
GROUP_VALUE character
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
EFG_PCT character Effective field goal percentage (0-1).
BLKA character
PCT_AST_2PM character
PCT_UAST_2PM character
PCT_AST_3PM character
PCT_UAST_3PM character
PCT_AST_FGM character
PCT_UAST_FGM character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
EFG_PCT_RANK character
BLKA_RANK character
PCT_AST_2PM_RANK character
PCT_UAST_2PM_RANK character
PCT_AST_3PM_RANK character
PCT_UAST_3PM_RANK character
PCT_AST_FGM_RANK character
PCT_UAST_FGM_RANK character

Shot5FTTeamDashboard

col_name types description
GROUP_SET character
GROUP_VALUE character
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
EFG_PCT character Effective field goal percentage (0-1).
BLKA character
PCT_AST_2PM character
PCT_UAST_2PM character
PCT_AST_3PM character
PCT_UAST_3PM character
PCT_AST_FGM character
PCT_UAST_FGM character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
EFG_PCT_RANK character
BLKA_RANK character
PCT_AST_2PM_RANK character
PCT_UAST_2PM_RANK character
PCT_AST_3PM_RANK character
PCT_UAST_3PM_RANK character
PCT_AST_FGM_RANK character
PCT_UAST_FGM_RANK character

Shot8FTTeamDashboard

col_name types description
GROUP_SET character
GROUP_VALUE character
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
EFG_PCT character Effective field goal percentage (0-1).
BLKA character
PCT_AST_2PM character
PCT_UAST_2PM character
PCT_AST_3PM character
PCT_UAST_3PM character
PCT_AST_FGM character
PCT_UAST_FGM character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
EFG_PCT_RANK character
BLKA_RANK character
PCT_AST_2PM_RANK character
PCT_UAST_2PM_RANK character
PCT_AST_3PM_RANK character
PCT_UAST_3PM_RANK character
PCT_AST_FGM_RANK character
PCT_UAST_FGM_RANK character

ShotAreaTeamDashboard

col_name types description
GROUP_SET character
GROUP_VALUE character
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
EFG_PCT character Effective field goal percentage (0-1).
BLKA character
PCT_AST_2PM character
PCT_UAST_2PM character
PCT_AST_3PM character
PCT_UAST_3PM character
PCT_AST_FGM character
PCT_UAST_FGM character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
EFG_PCT_RANK character
BLKA_RANK character
PCT_AST_2PM_RANK character
PCT_UAST_2PM_RANK character
PCT_AST_3PM_RANK character
PCT_UAST_3PM_RANK character
PCT_AST_FGM_RANK character
PCT_UAST_FGM_RANK character

AssitedShotTeamDashboard

col_name types description
GROUP_SET character
GROUP_VALUE character
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
EFG_PCT character Effective field goal percentage (0-1).
BLKA character
PCT_AST_2PM character
PCT_UAST_2PM character
PCT_AST_3PM character
PCT_UAST_3PM character
PCT_AST_FGM character
PCT_UAST_FGM character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
EFG_PCT_RANK character
BLKA_RANK character
PCT_AST_2PM_RANK character
PCT_UAST_2PM_RANK character
PCT_AST_3PM_RANK character
PCT_UAST_3PM_RANK character
PCT_AST_FGM_RANK character
PCT_UAST_FGM_RANK character

ShotTypeTeamDashboard

col_name types description
GROUP_SET character
GROUP_VALUE character
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
EFG_PCT character Effective field goal percentage (0-1).
BLKA character
PCT_AST_2PM character
PCT_UAST_2PM character
PCT_AST_3PM character
PCT_UAST_3PM character
PCT_AST_FGM character
PCT_UAST_FGM character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
EFG_PCT_RANK character
BLKA_RANK character
PCT_AST_2PM_RANK character
PCT_UAST_2PM_RANK character
PCT_AST_3PM_RANK character
PCT_UAST_3PM_RANK character
PCT_AST_FGM_RANK character
PCT_UAST_FGM_RANK character

AssistedBy

col_name types description
GROUP_SET character
PLAYER_ID character Unique player identifier.
PLAYER_NAME character Player name.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
EFG_PCT character Effective field goal percentage (0-1).
BLKA character
PCT_AST_2PM character
PCT_UAST_2PM character
PCT_AST_3PM character
PCT_UAST_3PM character
PCT_AST_FGM character
PCT_UAST_FGM character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
EFG_PCT_RANK character
BLKA_RANK character
PCT_AST_2PM_RANK character
PCT_UAST_2PM_RANK character
PCT_AST_3PM_RANK character
PCT_UAST_3PM_RANK character
PCT_AST_FGM_RANK character
PCT_UAST_FGM_RANK character

Author(s)

Saiem Gilani

See Also

Other WNBA Team Functions: wnba_leaguedashteamstats(), wnba_teamdashboardbyclutch(), wnba_teamdashboardbygamesplits(), wnba_teamdashboardbygeneralsplits(), wnba_teamdashboardbylastngames(), wnba_teamdashboardbyopponent(), wnba_teamdashboardbyteamperformance(), wnba_teamdashboardbyyearoveryear(), wnba_teamdashlineups(), wnba_teamdetails(), wnba_teamestimatedmetrics(), wnba_teamgamelog(), wnba_teamgamelogs(), wnba_teamgamestreakfinder(), wnba_teamhistoricalleaders(), wnba_teaminfocommon(), wnba_teamplayerdashboard(), wnba_teamplayeronoffdetails(), wnba_teamplayeronoffsummary(), wnba_teams(), wnba_teamvsplayer(), wnba_teamyearbyyearstats()

Other WNBA Shooting Functions: wnba_leaguedashplayershotlocations(), wnba_leaguedashteamshotlocations(), wnba_playerdashboardbyshootingsplits(), wnba_shotchartdetail(), wnba_shotchartleaguewide(), wnba_shotchartlineupdetail()


Get WNBA Stats API Team Dashboard by Team Performance

Description

Get WNBA Stats API Team Dashboard by Team Performance

Get WNBA Stats API Team Dashboard by Team Performance

Usage

wnba_teamdashboardbyteamperformance(
  date_from = "",
  date_to = "",
  game_segment = "",
  last_n_games = 0,
  league_id = "10",
  location = "",
  measure_type = "Base",
  month = 0,
  opponent_team_id = 0,
  outcome = "",
  pace_adjust = "N",
  plus_minus = "N",
  po_round = "",
  per_mode = "Totals",
  period = 0,
  rank = "N",
  season = most_recent_wnba_season(),
  season_segment = "",
  season_type = "Regular Season",
  shot_clock_range = "",
  team_id = "1611661328",
  vs_conference = "",
  vs_division = "",
  ...
)

Arguments

date_from

date_from

date_to

date_to

game_segment

game_segment

last_n_games

last_n_games

league_id

league_id

location

location

measure_type

measure_type

month

month

opponent_team_id

opponent_team_id

outcome

outcome

pace_adjust

pace_adjust

plus_minus

plus_minus

po_round

po_round

per_mode

per_mode

period

period

rank

rank

season

season

season_segment

season_segment

season_type

season_type

shot_clock_range

shot_clock_range

team_id

team_id

vs_conference

vs_conference

vs_division

vs_division

...

Additional arguments passed to an underlying function like httr.

Details

  wnba_teamdashboardbyteamperformance(team_id = '1611661328', season = most_recent_wnba_season())

Value

Return a named list of data frames: OverallTeamDashboard, PointsScoredTeamDashboard, PontsAgainstTeamDashboard, ScoreDifferentialTeamDashboard

OverallTeamDashboard

col_name types description
GROUP_SET character
GROUP_VALUE character
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character

ScoreDifferentialTeamDashboard

col_name types description
GROUP_SET character
GROUP_VALUE_ORDER character
GROUP_VALUE character
GROUP_VALUE_2 character
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character

PointsScoredTeamDashboard

col_name types description
GROUP_SET character
GROUP_VALUE_ORDER character
GROUP_VALUE character
GROUP_VALUE_2 character
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character

PontsAgainstTeamDashboard

col_name types description
GROUP_SET character
GROUP_VALUE_ORDER character
GROUP_VALUE character
GROUP_VALUE_2 character
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character

Author(s)

Saiem Gilani

See Also

Other WNBA Team Functions: wnba_leaguedashteamstats(), wnba_teamdashboardbyclutch(), wnba_teamdashboardbygamesplits(), wnba_teamdashboardbygeneralsplits(), wnba_teamdashboardbylastngames(), wnba_teamdashboardbyopponent(), wnba_teamdashboardbyshootingsplits(), wnba_teamdashboardbyyearoveryear(), wnba_teamdashlineups(), wnba_teamdetails(), wnba_teamestimatedmetrics(), wnba_teamgamelog(), wnba_teamgamelogs(), wnba_teamgamestreakfinder(), wnba_teamhistoricalleaders(), wnba_teaminfocommon(), wnba_teamplayerdashboard(), wnba_teamplayeronoffdetails(), wnba_teamplayeronoffsummary(), wnba_teams(), wnba_teamvsplayer(), wnba_teamyearbyyearstats()


Get WNBA Stats API Team Dashboard Year over Year

Description

Get WNBA Stats API Team Dashboard Year over Year

Get WNBA Stats API Team Dashboard Year over Year

Usage

wnba_teamdashboardbyyearoveryear(
  date_from = "",
  date_to = "",
  game_segment = "",
  last_n_games = 0,
  league_id = "10",
  location = "",
  measure_type = "Base",
  month = 0,
  opponent_team_id = 0,
  outcome = "",
  pace_adjust = "N",
  plus_minus = "N",
  po_round = "",
  per_mode = "Totals",
  period = 0,
  rank = "N",
  season = most_recent_wnba_season(),
  season_segment = "",
  season_type = "Regular Season",
  shot_clock_range = "",
  team_id = "1611661328",
  vs_conference = "",
  vs_division = "",
  ...
)

Arguments

date_from

date_from

date_to

date_to

game_segment

game_segment

last_n_games

last_n_games

league_id

league_id

location

location

measure_type

measure_type

month

month

opponent_team_id

opponent_team_id

outcome

outcome

pace_adjust

pace_adjust

plus_minus

plus_minus

po_round

po_round

per_mode

per_mode

period

period

rank

rank

season

season

season_segment

season_segment

season_type

season_type

shot_clock_range

shot_clock_range

team_id

team_id

vs_conference

vs_conference

vs_division

vs_division

...

Additional arguments passed to an underlying function like httr.

Details

  wnba_teamdashboardbyyearoveryear(team_id = '1611661328', season = most_recent_wnba_season())

Value

Return a named list of data frames: ByYearTeamDashboard, OverallTeamDashboard

OverallTeamDashboard

col_name types description
GROUP_SET character
GROUP_VALUE character
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character

ByYearTeamDashboard

col_name types description
GROUP_SET character
GROUP_VALUE character
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character

Author(s)

Saiem Gilani

See Also

Other WNBA Team Functions: wnba_leaguedashteamstats(), wnba_teamdashboardbyclutch(), wnba_teamdashboardbygamesplits(), wnba_teamdashboardbygeneralsplits(), wnba_teamdashboardbylastngames(), wnba_teamdashboardbyopponent(), wnba_teamdashboardbyshootingsplits(), wnba_teamdashboardbyteamperformance(), wnba_teamdashlineups(), wnba_teamdetails(), wnba_teamestimatedmetrics(), wnba_teamgamelog(), wnba_teamgamelogs(), wnba_teamgamestreakfinder(), wnba_teamhistoricalleaders(), wnba_teaminfocommon(), wnba_teamplayerdashboard(), wnba_teamplayeronoffdetails(), wnba_teamplayeronoffsummary(), wnba_teams(), wnba_teamvsplayer(), wnba_teamyearbyyearstats()


Get WNBA Stats API Team Dashboard - Lineups

Description

Get WNBA Stats API Team Dashboard - Lineups

Get WNBA Stats API Team Dashboard - Lineups

Usage

wnba_teamdashlineups(
  date_from = "",
  date_to = "",
  game_id = "",
  game_segment = "",
  group_quantity = 5,
  last_n_games = 0,
  league_id = "10",
  location = "",
  measure_type = "Base",
  month = 0,
  opponent_team_id = 0,
  outcome = "",
  pace_adjust = "N",
  plus_minus = "N",
  po_round = "",
  per_mode = "Totals",
  period = 0,
  rank = "N",
  season = most_recent_wnba_season(),
  season_segment = "",
  season_type = "Regular Season",
  shot_clock_range = "",
  team_id = "1611661328",
  vs_conference = "",
  vs_division = "",
  ...
)

Arguments

date_from

date_from

date_to

date_to

game_id

game_id

game_segment

game_segment

group_quantity

group_quantity

last_n_games

last_n_games

league_id

league_id

location

location

measure_type

measure_type

month

month

opponent_team_id

opponent_team_id

outcome

outcome

pace_adjust

pace_adjust

plus_minus

plus_minus

po_round

po_round

per_mode

per_mode

period

period

rank

rank

season

season

season_segment

season_segment

season_type

season_type

shot_clock_range

shot_clock_range

team_id

team_id

vs_conference

vs_conference

vs_division

vs_division

...

Additional arguments passed to an underlying function like httr.

Details

  wnba_teamdashlineups(team_id = '1611661328', season = most_recent_wnba_season())

Value

Return a named list of data frames: Lineups, Overall

Overall

col_name types description
GROUP_SET character
GROUP_VALUE character
TEAM_ID character Unique team identifier.
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
TEAM_NAME character Full team display name (e.g. 'Las Vegas Aces').
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character

Lineups

col_name types description
GROUP_SET character
GROUP_ID character Group identifier (e.g. conference group_id).
GROUP_NAME character Group name.
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character

Author(s)

Saiem Gilani

See Also

Other WNBA Team Functions: wnba_leaguedashteamstats(), wnba_teamdashboardbyclutch(), wnba_teamdashboardbygamesplits(), wnba_teamdashboardbygeneralsplits(), wnba_teamdashboardbylastngames(), wnba_teamdashboardbyopponent(), wnba_teamdashboardbyshootingsplits(), wnba_teamdashboardbyteamperformance(), wnba_teamdashboardbyyearoveryear(), wnba_teamdetails(), wnba_teamestimatedmetrics(), wnba_teamgamelog(), wnba_teamgamelogs(), wnba_teamgamestreakfinder(), wnba_teamhistoricalleaders(), wnba_teaminfocommon(), wnba_teamplayerdashboard(), wnba_teamplayeronoffdetails(), wnba_teamplayeronoffsummary(), wnba_teams(), wnba_teamvsplayer(), wnba_teamyearbyyearstats()

Other WNBA Lineup Functions: wnba_gamerotation(), wnba_leaguedashlineups(), wnba_leaguelineupviz(), wnba_shotchartlineupdetail()


Get WNBA Stats API Team Details

Description

Get WNBA Stats API Team Details

Get WNBA Stats API Team Details

Usage

wnba_teamdetails(team_id = "1611661328", ...)

Arguments

team_id

Team ID

...

Additional arguments passed to an underlying function like httr.

Details

 wnba_teamdetails(team_id = '1611661328')

Value

Return a named list of data frames: TeamAwardsChampionships, TeamAwardsConf, TeamAwardsDiv, TeamBackground, TeamHistory, TeamHof, TeamRetired, TeamSocialSites

TeamBackground

col_name types description
TEAM_ID character Unique team identifier.
ABBREVIATION character Short abbreviation.
NICKNAME character Team or athlete nickname.
YEARFOUNDED character
CITY character City.
ARENA character
ARENACAPACITY character
OWNER character
GENERALMANAGER character
HEADCOACH character
DLEAGUEAFFILIATION character

TeamHistory

col_name types description
TEAM_ID character Unique team identifier.
CITY character City.
NICKNAME character Team or athlete nickname.
YEARFOUNDED character
YEARACTIVETILL character

TeamSocialSites

col_name types description
ACCOUNTTYPE character
WEBSITE_LINK character

TeamAwardsChampionships

col_name types description
YEARAWARDED character
OPPOSITETEAM character

TeamAwardsConf

col_name types description
YEARAWARDED integer
OPPOSITETEAM integer

TeamAwardsDiv

col_name types description
YEARAWARDED integer
OPPOSITETEAM integer

TeamHof

col_name types description
PLAYERID character
PLAYER character
POSITION character Listed roster position (G, F, C, etc.).
JERSEY character Jersey number worn by the player.
SEASONSWITHTEAM character
YEAR character 4-digit year.

TeamRetired

col_name types description
PLAYERID character
PLAYER character
POSITION character Listed roster position (G, F, C, etc.).
JERSEY character Jersey number worn by the player.
SEASONSWITHTEAM character
YEAR character 4-digit year.

Author(s)

Saiem Gilani

See Also

Other WNBA Team Functions: wnba_leaguedashteamstats(), wnba_teamdashboardbyclutch(), wnba_teamdashboardbygamesplits(), wnba_teamdashboardbygeneralsplits(), wnba_teamdashboardbylastngames(), wnba_teamdashboardbyopponent(), wnba_teamdashboardbyshootingsplits(), wnba_teamdashboardbyteamperformance(), wnba_teamdashboardbyyearoveryear(), wnba_teamdashlineups(), wnba_teamestimatedmetrics(), wnba_teamgamelog(), wnba_teamgamelogs(), wnba_teamgamestreakfinder(), wnba_teamhistoricalleaders(), wnba_teaminfocommon(), wnba_teamplayerdashboard(), wnba_teamplayeronoffdetails(), wnba_teamplayeronoffsummary(), wnba_teams(), wnba_teamvsplayer(), wnba_teamyearbyyearstats()


Get WNBA Stats API Team Estimated Metrics

Description

Get WNBA Stats API Team Estimated Metrics

Get WNBA Stats API Team Estimated Metrics

Usage

wnba_teamestimatedmetrics(
  league_id = "10",
  season = most_recent_wnba_season(),
  season_type = "Regular Season",
  ...
)

Arguments

league_id

League - default: '00'. Other options include '10': WNBA, '20': G-League

season

Season - format 2020-21

season_type

Season Type - Regular Season, Playoffs, All-Star

...

Additional arguments passed to an underlying function like httr.

Details

 wnba_teamestimatedmetrics()

Value

Return a named list of data frames: TeamEstimatedMetrics

TeamEstimatedMetrics

col_name types description
TEAM_NAME character Full team display name (e.g. 'Las Vegas Aces').
TEAM_ID character Unique team identifier.
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
E_OFF_RATING character
E_DEF_RATING character
E_NET_RATING character
E_PACE character
E_AST_RATIO character
E_OREB_PCT character
E_DREB_PCT character
E_REB_PCT character
E_TM_TOV_PCT character
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
E_OFF_RATING_RANK character
E_DEF_RATING_RANK character
E_NET_RATING_RANK character
E_AST_RATIO_RANK character
E_OREB_PCT_RANK character
E_DREB_PCT_RANK character
E_REB_PCT_RANK character
E_TM_TOV_PCT_RANK character
E_PACE_RANK character

Author(s)

Saiem Gilani

See Also

Other WNBA Team Functions: wnba_leaguedashteamstats(), wnba_teamdashboardbyclutch(), wnba_teamdashboardbygamesplits(), wnba_teamdashboardbygeneralsplits(), wnba_teamdashboardbylastngames(), wnba_teamdashboardbyopponent(), wnba_teamdashboardbyshootingsplits(), wnba_teamdashboardbyteamperformance(), wnba_teamdashboardbyyearoveryear(), wnba_teamdashlineups(), wnba_teamdetails(), wnba_teamgamelog(), wnba_teamgamelogs(), wnba_teamgamestreakfinder(), wnba_teamhistoricalleaders(), wnba_teaminfocommon(), wnba_teamplayerdashboard(), wnba_teamplayeronoffdetails(), wnba_teamplayeronoffsummary(), wnba_teams(), wnba_teamvsplayer(), wnba_teamyearbyyearstats()


Get WNBA Stats API Team Game Log

Description

Get WNBA Stats API Team Game Log

Get WNBA Stats API Team Game Log

Usage

wnba_teamgamelog(
  date_from = "",
  date_to = "",
  league_id = "10",
  season = most_recent_wnba_season(),
  season_type = "Regular Season",
  team_id = "1611661328",
  ...
)

Arguments

date_from

date_from

date_to

date_to

league_id

League - default: '00'. Other options include '10': WNBA, '20': G-League

season

Season - format 2020-21

season_type

Season Type - Regular Season, Playoffs, All-Star

team_id

Team ID

...

Additional arguments passed to an underlying function like httr.

Details

 wnba_teamgamelog(team_id = '1611661328')

Value

Return a named list of data frames: TeamGameLog

TeamGameLog

col_name types description
Team_ID character Unique team identifier.
Game_ID character Unique game identifier.
GAME_DATE character Game date (YYYY-MM-DD).
MATCHUP character Matchup.
WL character
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
STL character Steals.
BLK character Blocks.
TOV character Turnovers.
PF character Personal fouls.
PTS character Points scored.

Author(s)

Saiem Gilani

See Also

Other WNBA Team Functions: wnba_leaguedashteamstats(), wnba_teamdashboardbyclutch(), wnba_teamdashboardbygamesplits(), wnba_teamdashboardbygeneralsplits(), wnba_teamdashboardbylastngames(), wnba_teamdashboardbyopponent(), wnba_teamdashboardbyshootingsplits(), wnba_teamdashboardbyteamperformance(), wnba_teamdashboardbyyearoveryear(), wnba_teamdashlineups(), wnba_teamdetails(), wnba_teamestimatedmetrics(), wnba_teamgamelogs(), wnba_teamgamestreakfinder(), wnba_teamhistoricalleaders(), wnba_teaminfocommon(), wnba_teamplayerdashboard(), wnba_teamplayeronoffdetails(), wnba_teamplayeronoffsummary(), wnba_teams(), wnba_teamvsplayer(), wnba_teamyearbyyearstats()


Get WNBA Stats API Team Game Logs

Description

Get WNBA Stats API Team Game Logs

Get WNBA Stats API Team Game Logs

Usage

wnba_teamgamelogs(
  date_from = "",
  date_to = "",
  game_segment = "",
  last_n_games = 0,
  league_id = "10",
  location = "",
  measure_type = "Base",
  month = 0,
  opponent_team_id = 0,
  outcome = "",
  po_round = "",
  per_mode = "Totals",
  period = 0,
  player_id = "",
  season = most_recent_wnba_season(),
  season_segment = "",
  season_type = "Regular Season",
  team_id = "1611661328",
  vs_conference = "",
  vs_division = "",
  ...
)

Arguments

date_from

date_from

date_to

date_to

game_segment

game_segment

last_n_games

last_n_games

league_id

League - default: '00'. Other options include '10': WNBA, '20': G-League

location

location

measure_type

measure_type

month

month

opponent_team_id

opponent_team_id

outcome

outcome

po_round

po_round

per_mode

per_mode

period

period

player_id

Player ID

season

Season - format 2020-21

season_segment

season_segment

season_type

Season Type - Regular Season, Playoffs, All-Star

team_id

team_id

vs_conference

vs_conference

vs_division

vs_division

...

Additional arguments passed to an underlying function like httr.

Details

Teams Game Log

 wnba_teamgamelogs(team_id = '1611661328')

Value

Return a named list of data frames: TeamGameLogs

TeamGameLogs

col_name types description
SEASON_YEAR character Season year string ('YYYY-YY' format).
TEAM_ID character Unique team identifier.
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
TEAM_NAME character Full team display name (e.g. 'Las Vegas Aces').
GAME_ID character Unique game identifier.
GAME_DATE character Game date (YYYY-MM-DD).
MATCHUP character Matchup.
WL character
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character

Author(s)

Saiem Gilani

See Also

Other WNBA Team Functions: wnba_leaguedashteamstats(), wnba_teamdashboardbyclutch(), wnba_teamdashboardbygamesplits(), wnba_teamdashboardbygeneralsplits(), wnba_teamdashboardbylastngames(), wnba_teamdashboardbyopponent(), wnba_teamdashboardbyshootingsplits(), wnba_teamdashboardbyteamperformance(), wnba_teamdashboardbyyearoveryear(), wnba_teamdashlineups(), wnba_teamdetails(), wnba_teamestimatedmetrics(), wnba_teamgamelog(), wnba_teamgamestreakfinder(), wnba_teamhistoricalleaders(), wnba_teaminfocommon(), wnba_teamplayerdashboard(), wnba_teamplayeronoffdetails(), wnba_teamplayeronoffsummary(), wnba_teams(), wnba_teamvsplayer(), wnba_teamyearbyyearstats()


Get WNBA Stats API Team Game Streak Finder

Description

Get WNBA Stats API Team Game Streak Finder

Get WNBA Stats API Team Game Streak Finder

Usage

wnba_teamgamestreakfinder(
  active_streaks_only = "",
  active_teams_only = "",
  btr_opp_ast = "",
  btr_opp_blk = "",
  btr_opp_dreb = "",
  btr_opp_fg3a = "",
  btr_opp_fg3m = "",
  btr_opp_fg3_pct = "",
  btr_opp_fga = "",
  btr_opp_fgm = "",
  btr_opp_fg_pct = "",
  btr_opp_fta = "",
  btr_opp_ftm = "",
  btr_opp_ft_pct = "",
  btr_opp_oreb = "",
  btr_opp_pf = "",
  btr_opp_pts = "",
  btr_opp_pts2nd_chance = "",
  btr_opp_pts_fb = "",
  btr_opp_pts_off_tov = "",
  btr_opp_pts_paint = "",
  btr_opp_reb = "",
  btr_opp_stl = "",
  btr_opp_tov = "",
  conference = "",
  date_from = "",
  date_to = "",
  division = "",
  et_ast = "",
  et_blk = "",
  et_dd = "",
  et_dreb = "",
  et_fg3a = "",
  et_fg3m = "",
  et_fg3_pct = "",
  et_fga = "",
  et_fgm = "",
  et_fg_pct = "",
  et_fta = "",
  et_ftm = "",
  et_ft_pct = "",
  et_minutes = "",
  eq_opp_pts2nd_chance = "",
  eq_opp_pts_fb = "",
  eq_opp_pts_off_tov = "",
  eq_opp_pts_paint = "",
  et_oreb = "",
  et_pf = "",
  et_pts = "",
  eq_pts2nd_chance = "",
  eq_pts_fb = "",
  eq_pts_off_tov = "",
  eq_pts_paint = "",
  et_reb = "",
  et_stl = "",
  et_td = "",
  et_tov = "",
  game_id = "",
  gt_ast = "",
  gt_blk = "",
  gt_dd = "",
  gt_dreb = "",
  gt_fg3a = "",
  gt_fg3m = "",
  gt_fg3_pct = "",
  gt_fga = "",
  gt_fgm = "",
  gt_fg_pct = "",
  gt_fta = "",
  gt_ftm = "",
  gt_ft_pct = "",
  gt_minutes = "",
  gt_opp_ast = "",
  gt_opp_blk = "",
  gt_opp_dreb = "",
  gt_opp_fg3a = "",
  gt_opp_fg3m = "",
  gt_opp_fg3_pct = "",
  gt_opp_fga = "",
  gt_opp_fgm = "",
  gt_opp_fg_pct = "",
  gt_opp_fta = "",
  gt_opp_ftm = "",
  gt_opp_ft_pct = "",
  gt_opp_oreb = "",
  gt_opp_pf = "",
  gt_opp_pts = "",
  gt_opp_pts2nd_chance = "",
  gt_opp_pts_fb = "",
  gt_opp_pts_off_tov = "",
  gt_opp_pts_paint = "",
  gt_opp_reb = "",
  gt_opp_stl = "",
  gt_opp_tov = "",
  gt_oreb = "",
  gt_pf = "",
  gt_pts = "",
  gt_pts2nd_chance = "",
  gt_pts_fb = "",
  gt_pts_off_tov = "",
  gt_pts_paint = "",
  gt_reb = "",
  gt_stl = "",
  gt_td = "",
  gt_tov = "",
  lstreak = "",
  league_id = "10",
  location = "",
  lt_ast = "",
  lt_blk = "",
  lt_dd = "",
  lt_dreb = "",
  lt_fg3a = "",
  lt_fg3m = "",
  lt_fg3_pct = "",
  lt_fga = "",
  lt_fgm = "",
  lt_fg_pct = "",
  lt_fta = "",
  lt_ftm = "",
  lt_ft_pct = "",
  lt_minutes = "",
  lt_opp_ast = "",
  lt_opp_blk = "",
  lt_opp_dreb = "",
  lt_opp_fg3a = "",
  lt_opp_fg3m = "",
  lt_opp_fg3_pct = "",
  lt_opp_fga = "",
  lt_opp_fgm = "",
  lt_opp_fg_pct = "",
  lt_opp_fta = "",
  lt_opp_ftm = "",
  lt_opp_ft_pct = "",
  lt_opp_oreb = "",
  lt_opp_pf = "",
  lt_opp_pts = "",
  lt_opp_pts2nd_chance = "",
  lt_opp_pts_fb = "",
  lt_opp_pts_off_tov = "",
  lt_opp_pts_paint = "",
  lt_opp_reb = "",
  lt_opp_stl = "",
  lt_opp_tov = "",
  lt_oreb = "",
  lt_pf = "",
  lt_pts = "",
  lt_pts2nd_chance = "",
  lt_pts_fb = "",
  lt_pts_off_tov = "",
  lt_pts_paint = "",
  lt_reb = "",
  lt_stl = "",
  lt_td = "",
  lt_tov = "",
  min_games = "",
  outcome = "",
  po_round = "",
  season = most_recent_wnba_season(),
  season_segment = "",
  season_type = "Regular Season",
  team_id = "",
  vs_conference = "",
  vs_division = "",
  vs_team_id = "",
  wstreak = "",
  wrs_opp_ast = "",
  wrs_opp_blk = "",
  wrs_opp_dreb = "",
  wrs_opp_fg3a = "",
  wrs_opp_fg3m = "",
  wrs_opp_fg3_pct = "",
  wrs_opp_fga = "",
  wrs_opp_fgm = "",
  wrs_opp_fg_pct = "",
  wrs_opp_fta = "",
  wrs_opp_ftm = "",
  wrs_opp_ft_pct = "",
  wrs_opp_oreb = "",
  wrs_opp_pf = "",
  wrs_opp_pts = "",
  wrs_opp_pts2nd_chance = "",
  wrs_opp_pts_fb = "",
  wrs_opp_pts_off_tov = "",
  wrs_opp_pts_paint = "",
  wrs_opp_reb = "",
  wrs_opp_stl = "",
  wrs_opp_tov = "",
  ...
)

Arguments

active_streaks_only

active_streaks_only

active_teams_only

active_teams_only

btr_opp_ast

btr_opp_ast

btr_opp_blk

btr_opp_blk

btr_opp_dreb

btr_opp_dreb

btr_opp_fg3a

btr_opp_fg3a

btr_opp_fg3m

btr_opp_fg3m

btr_opp_fg3_pct

btr_opp_fg3_pct

btr_opp_fga

btr_opp_fga

btr_opp_fgm

btr_opp_fgm

btr_opp_fg_pct

btr_opp_fg_pct

btr_opp_fta

btr_opp_fta

btr_opp_ftm

btr_opp_ftm

btr_opp_ft_pct

btr_opp_ft_pct

btr_opp_oreb

btr_opp_oreb

btr_opp_pf

btr_opp_pf

btr_opp_pts

btr_opp_pts

btr_opp_pts2nd_chance

btr_opp_pts2nd_chance

btr_opp_pts_fb

btr_opp_pts_fb

btr_opp_pts_off_tov

btr_opp_pts_off_tov

btr_opp_pts_paint

btr_opp_pts_paint

btr_opp_reb

btr_opp_reb

btr_opp_stl

btr_opp_stl

btr_opp_tov

btr_opp_tov

conference

conference

date_from

date_from

date_to

date_to

division

division

et_ast

et_ast

et_blk

et_blk

et_dd

et_dd

et_dreb

et_dreb

et_fg3a

et_fg3a

et_fg3m

et_fg3m

et_fg3_pct

et_fg3_pct

et_fga

et_fga

et_fgm

et_fgm

et_fg_pct

et_fg_pct

et_fta

et_fta

et_ftm

et_ftm

et_ft_pct

et_ft_pct

et_minutes

et_minutes

eq_opp_pts2nd_chance

eq_opp_pts2nd_chance

eq_opp_pts_fb

eq_opp_pts_fb

eq_opp_pts_off_tov

eq_opp_pts_off_tov

eq_opp_pts_paint

eq_opp_pts_paint

et_oreb

et_oreb

et_pf

et_pf

et_pts

et_pts

eq_pts2nd_chance

eq_pts2nd_chance

eq_pts_fb

eq_pts_fb

eq_pts_off_tov

eq_pts_off_tov

eq_pts_paint

eq_pts_paint

et_reb

et_reb

et_stl

et_stl

et_td

et_td

et_tov

et_tov

game_id

game_id

gt_ast

gt_ast

gt_blk

gt_blk

gt_dd

gt_dd

gt_dreb

gt_dreb

gt_fg3a

gt_fg3a

gt_fg3m

gt_fg3m

gt_fg3_pct

gt_fg3_pct

gt_fga

gt_fga

gt_fgm

gt_fgm

gt_fg_pct

gt_fg_pct

gt_fta

gt_fta

gt_ftm

gt_ftm

gt_ft_pct

gt_ft_pct

gt_minutes

gt_minutes

gt_opp_ast

gt_opp_ast

gt_opp_blk

gt_opp_blk

gt_opp_dreb

gt_opp_dreb

gt_opp_fg3a

gt_opp_fg3a

gt_opp_fg3m

gt_opp_fg3m

gt_opp_fg3_pct

gt_opp_fg3_pct

gt_opp_fga

gt_opp_fga

gt_opp_fgm

gt_opp_fgm

gt_opp_fg_pct

gt_opp_fg_pct

gt_opp_fta

gt_opp_fta

gt_opp_ftm

gt_opp_ftm

gt_opp_ft_pct

gt_opp_ft_pct

gt_opp_oreb

gt_opp_oreb

gt_opp_pf

gt_opp_pf

gt_opp_pts

gt_opp_pts

gt_opp_pts2nd_chance

gt_opp_pts2nd_chance

gt_opp_pts_fb

gt_opp_pts_fb

gt_opp_pts_off_tov

gt_opp_pts_off_tov

gt_opp_pts_paint

gt_opp_pts_paint

gt_opp_reb

gt_opp_reb

gt_opp_stl

gt_opp_stl

gt_opp_tov

gt_opp_tov

gt_oreb

gt_oreb

gt_pf

gt_pf

gt_pts

gt_pts

gt_pts2nd_chance

gt_pts2nd_chance

gt_pts_fb

gt_pts_fb

gt_pts_off_tov

gt_pts_off_tov

gt_pts_paint

gt_pts_paint

gt_reb

gt_reb

gt_stl

gt_stl

gt_td

gt_td

gt_tov

gt_tov

lstreak

lstreak

league_id

league_id

location

location

lt_ast

lt_ast

lt_blk

lt_blk

lt_dd

lt_dd

lt_dreb

lt_dreb

lt_fg3a

lt_fg3a

lt_fg3m

lt_fg3m

lt_fg3_pct

lt_fg3_pct

lt_fga

lt_fga

lt_fgm

lt_fgm

lt_fg_pct

lt_fg_pct

lt_fta

lt_fta

lt_ftm

lt_ftm

lt_ft_pct

lt_ft_pct

lt_minutes

lt_minutes

lt_opp_ast

lt_opp_ast

lt_opp_blk

lt_opp_blk

lt_opp_dreb

lt_opp_dreb

lt_opp_fg3a

lt_opp_fg3a

lt_opp_fg3m

lt_opp_fg3m

lt_opp_fg3_pct

lt_opp_fg3_pct

lt_opp_fga

lt_opp_fga

lt_opp_fgm

lt_opp_fgm

lt_opp_fg_pct

lt_opp_fg_pct

lt_opp_fta

lt_opp_fta

lt_opp_ftm

lt_opp_ftm

lt_opp_ft_pct

lt_opp_ft_pct

lt_opp_oreb

lt_opp_oreb

lt_opp_pf

lt_opp_pf

lt_opp_pts

lt_opp_pts

lt_opp_pts2nd_chance

lt_opp_pts2nd_chance

lt_opp_pts_fb

lt_opp_pts_fb

lt_opp_pts_off_tov

lt_opp_pts_off_tov

lt_opp_pts_paint

lt_opp_pts_paint

lt_opp_reb

lt_opp_reb

lt_opp_stl

lt_opp_stl

lt_opp_tov

lt_opp_tov

lt_oreb

lt_oreb

lt_pf

lt_pf

lt_pts

lt_pts

lt_pts2nd_chance

lt_pts2nd_chance

lt_pts_fb

lt_pts_fb

lt_pts_off_tov

lt_pts_off_tov

lt_pts_paint

lt_pts_paint

lt_reb

lt_reb

lt_stl

lt_stl

lt_td

lt_td

lt_tov

lt_tov

min_games

min_games

outcome

outcome

po_round

po_round

season

season

season_segment

season_segment

season_type

season_type

team_id

team_id

vs_conference

vs_conference

vs_division

vs_division

vs_team_id

vs_team_id

wstreak

wstreak

wrs_opp_ast

wrs_opp_ast

wrs_opp_blk

wrs_opp_blk

wrs_opp_dreb

wrs_opp_dreb

wrs_opp_fg3a

wrs_opp_fg3a

wrs_opp_fg3m

wrs_opp_fg3m

wrs_opp_fg3_pct

wrs_opp_fg3_pct

wrs_opp_fga

wrs_opp_fga

wrs_opp_fgm

wrs_opp_fgm

wrs_opp_fg_pct

wrs_opp_fg_pct

wrs_opp_fta

wrs_opp_fta

wrs_opp_ftm

wrs_opp_ftm

wrs_opp_ft_pct

wrs_opp_ft_pct

wrs_opp_oreb

wrs_opp_oreb

wrs_opp_pf

wrs_opp_pf

wrs_opp_pts

wrs_opp_pts

wrs_opp_pts2nd_chance

wrs_opp_pts2nd_chance

wrs_opp_pts_fb

wrs_opp_pts_fb

wrs_opp_pts_off_tov

wrs_opp_pts_off_tov

wrs_opp_pts_paint

wrs_opp_pts_paint

wrs_opp_reb

wrs_opp_reb

wrs_opp_stl

wrs_opp_stl

wrs_opp_tov

wrs_opp_tov

...

Additional arguments passed to an underlying function like httr.

Details

 wnba_teamgamestreakfinder()

Value

Return a named list of data frames: TeamGameStreakFinderParametersResults

TeamGameStreakFinderParametersResults

col_name types description
TEAM_NAME character Full team display name (e.g. 'Las Vegas Aces').
TEAM_ID character Unique team identifier.
GAMESTREAK character
STARTDATE character
ENDDATE character
ACTIVESTREAK character
NUMSEASONS character
LASTSEASON character
FIRSTSEASON character
ABBREVIATION character Short abbreviation.

Author(s)

Saiem Gilani

See Also

Other WNBA Team Functions: wnba_leaguedashteamstats(), wnba_teamdashboardbyclutch(), wnba_teamdashboardbygamesplits(), wnba_teamdashboardbygeneralsplits(), wnba_teamdashboardbylastngames(), wnba_teamdashboardbyopponent(), wnba_teamdashboardbyshootingsplits(), wnba_teamdashboardbyteamperformance(), wnba_teamdashboardbyyearoveryear(), wnba_teamdashlineups(), wnba_teamdetails(), wnba_teamestimatedmetrics(), wnba_teamgamelog(), wnba_teamgamelogs(), wnba_teamhistoricalleaders(), wnba_teaminfocommon(), wnba_teamplayerdashboard(), wnba_teamplayeronoffdetails(), wnba_teamplayeronoffsummary(), wnba_teams(), wnba_teamvsplayer(), wnba_teamyearbyyearstats()

Other WNBA Game Finder Functions: wnba_leaguegamefinder(), wnba_playergamestreakfinder()


Get WNBA Stats API Team Historical Leaders

Description

Get WNBA Stats API Team Historical Leaders

Get WNBA Stats API Team Historical Leaders

Usage

wnba_teamhistoricalleaders(
  league_id = "10",
  season_id = "22022",
  team_id = "1611661328",
  ...
)

Arguments

league_id

league_id

season_id

season_id

team_id

team_id

...

Additional arguments passed to an underlying function like httr.

Details

  wnba_teamhistoricalleaders(team_id = '1611661328')

Value

Return a named list of data frames: CareerLeadersByTeam

CareerLeadersByTeam

col_name types description
TEAM_ID character Unique team identifier.
PTS character Points scored.
PTS_PERSON_ID character
PTS_PLAYER character
AST character Assists.
AST_PERSON_ID character
AST_PLAYER character
REB character Total rebounds.
REB_PERSON_ID character
REB_PLAYER character
BLK character Blocks.
BLK_PERSON_ID character
BLK_PLAYER character
STL character Steals.
STL_PERSON_ID character
STL_PLAYER character
SEASON_YEAR character Season year string ('YYYY-YY' format).

Author(s)

Saiem Gilani

See Also

Other WNBA Team Functions: wnba_leaguedashteamstats(), wnba_teamdashboardbyclutch(), wnba_teamdashboardbygamesplits(), wnba_teamdashboardbygeneralsplits(), wnba_teamdashboardbylastngames(), wnba_teamdashboardbyopponent(), wnba_teamdashboardbyshootingsplits(), wnba_teamdashboardbyteamperformance(), wnba_teamdashboardbyyearoveryear(), wnba_teamdashlineups(), wnba_teamdetails(), wnba_teamestimatedmetrics(), wnba_teamgamelog(), wnba_teamgamelogs(), wnba_teamgamestreakfinder(), wnba_teaminfocommon(), wnba_teamplayerdashboard(), wnba_teamplayeronoffdetails(), wnba_teamplayeronoffsummary(), wnba_teams(), wnba_teamvsplayer(), wnba_teamyearbyyearstats()


Get WNBA Stats API Team Common Info

Description

Get WNBA Stats API Team Common Info

Get WNBA Stats API Team Common Info

Usage

wnba_teaminfocommon(
  league_id = "10",
  season = most_recent_wnba_season(),
  season_type = "Regular Season",
  team_id = "1611661328",
  ...
)

Arguments

league_id

League - default: '10'. Other options include '00': NBA, '20': G-League

season

Season - format 2020-21

season_type

Season Type - Regular Season, Playoffs, All-Star

team_id

Team ID

...

Additional arguments passed to an underlying function like httr.

Details

  wnba_teaminfocommon(team_id = '1611661328')

Value

Return a named list of data frames: AvailableSeasons, TeamInfoCommon, TeamSeasonRanks

TeamInfoCommon

col_name types description
TEAM_ID character Unique team identifier.
SEASON_YEAR character Season year string ('YYYY-YY' format).
TEAM_CITY character Team city or region (e.g. 'Las Vegas').
TEAM_NAME character Full team display name (e.g. 'Las Vegas Aces').
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
TEAM_CONFERENCE character
TEAM_DIVISION character
TEAM_CODE character
TEAM_SLUG character URL-safe team identifier (e.g. 'lasvegas-aces' / 'aces').
W character Wins.
L character Losses.
PCT character
CONF_RANK character
DIV_RANK character
MIN_YEAR character
MAX_YEAR character

TeamSeasonRanks

col_name types description
LEAGUE_ID character League identifier ('10' = WNBA).
SEASON_ID character Unique season identifier.
TEAM_ID character Unique team identifier.
PTS_RANK character
PTS_PG character
REB_RANK character
REB_PG character
AST_RANK character
AST_PG character
OPP_PTS_RANK character
OPP_PTS_PG character

AvailableSeasons

col_name types description
SEASON_ID character Unique season identifier.

Author(s)

Saiem Gilani

See Also

Other WNBA Team Functions: wnba_leaguedashteamstats(), wnba_teamdashboardbyclutch(), wnba_teamdashboardbygamesplits(), wnba_teamdashboardbygeneralsplits(), wnba_teamdashboardbylastngames(), wnba_teamdashboardbyopponent(), wnba_teamdashboardbyshootingsplits(), wnba_teamdashboardbyteamperformance(), wnba_teamdashboardbyyearoveryear(), wnba_teamdashlineups(), wnba_teamdetails(), wnba_teamestimatedmetrics(), wnba_teamgamelog(), wnba_teamgamelogs(), wnba_teamgamestreakfinder(), wnba_teamhistoricalleaders(), wnba_teamplayerdashboard(), wnba_teamplayeronoffdetails(), wnba_teamplayeronoffsummary(), wnba_teams(), wnba_teamvsplayer(), wnba_teamyearbyyearstats()


Get WNBA Stats API Team Player Dashboard

Description

Get WNBA Stats API Team Player Dashboard

Get WNBA Stats API Team Player Dashboard

Usage

wnba_teamplayerdashboard(
  date_from = "",
  date_to = "",
  game_segment = "",
  last_n_games = 0,
  league_id = "10",
  location = "",
  measure_type = "Base",
  month = 0,
  opponent_team_id = 0,
  outcome = "",
  pace_adjust = "N",
  plus_minus = "N",
  po_round = "",
  per_mode = "Totals",
  period = 0,
  rank = "N",
  season = most_recent_wnba_season(),
  season_segment = "",
  season_type = "Regular Season",
  shot_clock_range = "",
  team_id = "1611661328",
  vs_conference = "",
  vs_division = "",
  ...
)

Arguments

date_from

date_from

date_to

date_to

game_segment

game_segment

last_n_games

last_n_games

league_id

league_id

location

location

measure_type

measure_type

month

month

opponent_team_id

opponent_team_id

outcome

outcome

pace_adjust

pace_adjust

plus_minus

plus_minus

po_round

po_round

per_mode

per_mode

period

period

rank

rank

season

season

season_segment

season_segment

season_type

season_type

shot_clock_range

shot_clock_range

team_id

team_id

vs_conference

vs_conference

vs_division

vs_division

...

Additional arguments passed to an underlying function like httr.

Details

  wnba_teamplayerdashboard(team_id = '1611661328')

Value

Return a named list of data frames: PlayersSeasonTotals, TeamOverall

TeamOverall

col_name types description
GROUP_SET character
TEAM_ID character Unique team identifier.
TEAM_NAME character Full team display name (e.g. 'Las Vegas Aces').
GROUP_VALUE character
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character

PlayersSeasonTotals

col_name types description
GROUP_SET character
PLAYER_ID character Unique player identifier.
PLAYER_NAME character Player name.
NICKNAME character Team or athlete nickname.
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
NBA_FANTASY_PTS character
DD2 character
TD3 character
WNBA_FANTASY_PTS character
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character
NBA_FANTASY_PTS_RANK character
DD2_RANK character
TD3_RANK character
WNBA_FANTASY_PTS_RANK character

Author(s)

Saiem Gilani

See Also

Other WNBA Team Functions: wnba_leaguedashteamstats(), wnba_teamdashboardbyclutch(), wnba_teamdashboardbygamesplits(), wnba_teamdashboardbygeneralsplits(), wnba_teamdashboardbylastngames(), wnba_teamdashboardbyopponent(), wnba_teamdashboardbyshootingsplits(), wnba_teamdashboardbyteamperformance(), wnba_teamdashboardbyyearoveryear(), wnba_teamdashlineups(), wnba_teamdetails(), wnba_teamestimatedmetrics(), wnba_teamgamelog(), wnba_teamgamelogs(), wnba_teamgamestreakfinder(), wnba_teamhistoricalleaders(), wnba_teaminfocommon(), wnba_teamplayeronoffdetails(), wnba_teamplayeronoffsummary(), wnba_teams(), wnba_teamvsplayer(), wnba_teamyearbyyearstats()


Get WNBA Stats API Team Player On/Off Details

Description

Get WNBA Stats API Team Player On/Off Details

Get WNBA Stats API Team Player On/Off Details

Usage

wnba_teamplayeronoffdetails(
  date_from = "",
  date_to = "",
  game_segment = "",
  last_n_games = 0,
  league_id = "10",
  location = "",
  measure_type = "Base",
  month = 0,
  opponent_team_id = 0,
  outcome = "",
  pace_adjust = "N",
  plus_minus = "N",
  po_round = "",
  per_mode = "Totals",
  period = 0,
  rank = "N",
  season = most_recent_wnba_season(),
  season_segment = "",
  season_type = "Regular Season",
  shot_clock_range = "",
  team_id = "1611661328",
  vs_conference = "",
  vs_division = "",
  ...
)

Arguments

date_from

date_from

date_to

date_to

game_segment

game_segment

last_n_games

last_n_games

league_id

league_id

location

location

measure_type

measure_type

month

month

opponent_team_id

opponent_team_id

outcome

outcome

pace_adjust

pace_adjust

plus_minus

plus_minus

po_round

po_round

per_mode

per_mode

period

period

rank

rank

season

season

season_segment

season_segment

season_type

season_type

shot_clock_range

shot_clock_range

team_id

team_id

vs_conference

vs_conference

vs_division

vs_division

...

Additional arguments passed to an underlying function like httr.

Details

 wnba_teamplayeronoffdetails(team_id = '1611661328')

Value

Return a named list of data frames: OverallTeamPlayerOnOffDetails, PlayersOffCourtTeamPlayerOnOffDetails, PlayersOnCourtTeamPlayerOnOffDetails

OverallTeamPlayerOnOffDetails

col_name types description
GROUP_SET character
GROUP_VALUE character
TEAM_ID character Unique team identifier.
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
TEAM_NAME character Full team display name (e.g. 'Las Vegas Aces').
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character

PlayersOnCourtTeamPlayerOnOffDetails

col_name types description
GROUP_SET character
TEAM_ID character Unique team identifier.
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
TEAM_NAME character Full team display name (e.g. 'Las Vegas Aces').
VS_PLAYER_ID character
VS_PLAYER_NAME character
COURT_STATUS character
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character

PlayersOffCourtTeamPlayerOnOffDetails

col_name types description
GROUP_SET character
TEAM_ID character Unique team identifier.
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
TEAM_NAME character Full team display name (e.g. 'Las Vegas Aces').
VS_PLAYER_ID character
VS_PLAYER_NAME character
COURT_STATUS character
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character

Author(s)

Saiem Gilani

See Also

Other WNBA Team Functions: wnba_leaguedashteamstats(), wnba_teamdashboardbyclutch(), wnba_teamdashboardbygamesplits(), wnba_teamdashboardbygeneralsplits(), wnba_teamdashboardbylastngames(), wnba_teamdashboardbyopponent(), wnba_teamdashboardbyshootingsplits(), wnba_teamdashboardbyteamperformance(), wnba_teamdashboardbyyearoveryear(), wnba_teamdashlineups(), wnba_teamdetails(), wnba_teamestimatedmetrics(), wnba_teamgamelog(), wnba_teamgamelogs(), wnba_teamgamestreakfinder(), wnba_teamhistoricalleaders(), wnba_teaminfocommon(), wnba_teamplayerdashboard(), wnba_teamplayeronoffsummary(), wnba_teams(), wnba_teamvsplayer(), wnba_teamyearbyyearstats()


Get WNBA Stats API Team Player On/Off Summary

Description

Get WNBA Stats API Team Player On/Off Summary

Get WNBA Stats API Team Player On/Off Summary

Usage

wnba_teamplayeronoffsummary(
  date_from = "",
  date_to = "",
  game_segment = "",
  last_n_games = 0,
  league_id = "10",
  location = "",
  measure_type = "Base",
  month = 0,
  opponent_team_id = 0,
  outcome = "",
  pace_adjust = "N",
  plus_minus = "N",
  po_round = "",
  per_mode = "Totals",
  period = 0,
  rank = "N",
  season = most_recent_wnba_season(),
  season_segment = "",
  season_type = "Regular Season",
  shot_clock_range = "",
  team_id = "1611661328",
  vs_conference = "",
  vs_division = "",
  ...
)

Arguments

date_from

date_from

date_to

date_to

game_segment

game_segment

last_n_games

last_n_games

league_id

league_id

location

location

measure_type

measure_type

month

month

opponent_team_id

opponent_team_id

outcome

outcome

pace_adjust

pace_adjust

plus_minus

plus_minus

po_round

po_round

per_mode

per_mode

period

period

rank

rank

season

season

season_segment

season_segment

season_type

season_type

shot_clock_range

shot_clock_range

team_id

team_id

vs_conference

vs_conference

vs_division

vs_division

...

Additional arguments passed to an underlying function like httr.

Details

  wnba_teamplayeronoffsummary(team_id = '1611661328')

Value

Return a named list of data frames: OverallTeamPlayerOnOffSummary, PlayersOffCourtTeamPlayerOnOffSummary, PlayersOnCourtTeamPlayerOnOffSummary

OverallTeamPlayerOnOffSummary

col_name types description
GROUP_SET character
GROUP_VALUE character
TEAM_ID character Unique team identifier.
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
TEAM_NAME character Full team display name (e.g. 'Las Vegas Aces').
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character

PlayersOnCourtTeamPlayerOnOffSummary

col_name types description
GROUP_SET character
TEAM_ID character Unique team identifier.
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
TEAM_NAME character Full team display name (e.g. 'Las Vegas Aces').
VS_PLAYER_ID character
VS_PLAYER_NAME character
COURT_STATUS character
GP character Games played.
MIN character Minutes played.
PLUS_MINUS character Plus/minus point differential while on court.
OFF_RATING character Offensive rating (points produced per 100 possessions).
DEF_RATING character Defensive rating (points allowed per 100 possessions).
NET_RATING character Net rating (off rating - def rating).

PlayersOffCourtTeamPlayerOnOffSummary

col_name types description
GROUP_SET character
TEAM_ID character Unique team identifier.
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
TEAM_NAME character Full team display name (e.g. 'Las Vegas Aces').
VS_PLAYER_ID character
VS_PLAYER_NAME character
COURT_STATUS character
GP character Games played.
MIN character Minutes played.
PLUS_MINUS character Plus/minus point differential while on court.
OFF_RATING character Offensive rating (points produced per 100 possessions).
DEF_RATING character Defensive rating (points allowed per 100 possessions).
NET_RATING character Net rating (off rating - def rating).

Author(s)

Saiem Gilani

See Also

Other WNBA Team Functions: wnba_leaguedashteamstats(), wnba_teamdashboardbyclutch(), wnba_teamdashboardbygamesplits(), wnba_teamdashboardbygeneralsplits(), wnba_teamdashboardbylastngames(), wnba_teamdashboardbyopponent(), wnba_teamdashboardbyshootingsplits(), wnba_teamdashboardbyteamperformance(), wnba_teamdashboardbyyearoveryear(), wnba_teamdashlineups(), wnba_teamdetails(), wnba_teamestimatedmetrics(), wnba_teamgamelog(), wnba_teamgamelogs(), wnba_teamgamestreakfinder(), wnba_teamhistoricalleaders(), wnba_teaminfocommon(), wnba_teamplayerdashboard(), wnba_teamplayeronoffdetails(), wnba_teams(), wnba_teamvsplayer(), wnba_teamyearbyyearstats()


Get WNBA Stats API Teams

Description

Get WNBA Stats API Teams

Get WNBA Stats API Teams

Usage

wnba_teams(...)

Arguments

...

Additional arguments passed to an underlying function like httr.

Details

 wnba_teams()

Value

Return a data frame with the following columns:

col_name types description
league_id character League identifier ('10' = WNBA).
season_id character Unique season identifier.
team_id character Unique team identifier.
team_city character Team city or region (e.g. 'Las Vegas').
team_name character Full team display name (e.g. 'Las Vegas Aces').
team_slug character URL-safe team identifier (e.g. 'lasvegas-aces' / 'aces').
conference character Filter players or teams by conference.
division character Team division.
team_abbreviation character Short team abbreviation (e.g. 'LAS').
team_name_full character Team name full.
season character Season identifier (4-digit year or 'YYYY-YY' string).
espn_team_id integer Unique identifier for espn team.
team character Team-side label or team identifier.
mascot character Team mascot.
display_name character Display name.
abbreviation character Short abbreviation.
color character Primary color (hex without leading '#').
alternate_color character Alternate color (hex without leading '#').
logo character Team or league logo URL.
logo_dark character Logo dark.
wnba_logo_svg character Wnba logo svg.

Author(s)

Saiem Gilani

See Also

Other WNBA Team Functions: wnba_leaguedashteamstats(), wnba_teamdashboardbyclutch(), wnba_teamdashboardbygamesplits(), wnba_teamdashboardbygeneralsplits(), wnba_teamdashboardbylastngames(), wnba_teamdashboardbyopponent(), wnba_teamdashboardbyshootingsplits(), wnba_teamdashboardbyteamperformance(), wnba_teamdashboardbyyearoveryear(), wnba_teamdashlineups(), wnba_teamdetails(), wnba_teamestimatedmetrics(), wnba_teamgamelog(), wnba_teamgamelogs(), wnba_teamgamestreakfinder(), wnba_teamhistoricalleaders(), wnba_teaminfocommon(), wnba_teamplayerdashboard(), wnba_teamplayeronoffdetails(), wnba_teamplayeronoffsummary(), wnba_teamvsplayer(), wnba_teamyearbyyearstats()


Get WNBA Stats API Team vs Player

Description

Get WNBA Stats API Team vs Player

Get WNBA Stats API Team vs Player

Usage

wnba_teamvsplayer(
  date_from = "",
  date_to = "",
  game_segment = "",
  last_n_games = 0,
  league_id = "10",
  location = "",
  measure_type = "Base",
  month = 0,
  opponent_team_id = 0,
  outcome = "",
  po_round = "",
  pace_adjust = "N",
  per_mode = "Totals",
  period = 0,
  player_id = "",
  plus_minus = "N",
  rank = "N",
  season = most_recent_wnba_season(),
  season_segment = "",
  season_type = "Regular Season",
  shot_clock_range = "",
  team_id = "1611661328",
  vs_conference = "",
  vs_division = "",
  vs_player_id = "1628932",
  ...
)

Arguments

date_from

date_from

date_to

date_to

game_segment

game_segment

last_n_games

last_n_games

league_id

league_id

location

location

measure_type

measure_type

month

month

opponent_team_id

opponent_team_id

outcome

outcome

po_round

po_round

pace_adjust

pace_adjust

per_mode

per_mode

period

period

player_id

Player ID

plus_minus

plus_minus

rank

rank

season

season

season_segment

season_segment

season_type

season_type

shot_clock_range

shot_clock_range

team_id

team_id

vs_conference

vs_conference

vs_division

vs_division

vs_player_id

vs_player_id

...

Additional arguments passed to an underlying function like httr.

Details

  wnba_teamvsplayer(team_id = '1611661328', vs_player_id = '1628932')

Value

Return a named list of data frames: OnOffCourt, Overall, ShotAreaOffCourt, ShotAreaOnCourt, ShotAreaOverall, ShotDistanceOffCourt, ShotDistanceOnCourt, ShotDistanceOverall, vsPlayerOverall

Overall

col_name types description
GROUP_SET character
GROUP_VALUE character
TEAM_ID character Unique team identifier.
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character

vsPlayerOverall

col_name types description
GROUP_SET character
GROUP_VALUE character
PLAYER_ID character Unique player identifier.
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
NBA_FANTASY_PTS character
DD2 character
TD3 character
WNBA_FANTASY_PTS character
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character
NBA_FANTASY_PTS_RANK character
DD2_RANK character
TD3_RANK character
WNBA_FANTASY_PTS_RANK character

OnOffCourt

col_name types description
GROUP_SET character
TEAM_ID character Unique team identifier.
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
TEAM_NAME character Full team display name (e.g. 'Las Vegas Aces').
VS_PLAYER_ID character
VS_PLAYER_NAME character
COURT_STATUS character
GP character Games played.
W character Wins.
L character Losses.
W_PCT character Wins percentage (0-1 decimal).
MIN character Minutes played.
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
TOV character Turnovers.
STL character Steals.
BLK character Blocks.
BLKA character
PF character Personal fouls.
PFD character
PTS character Points scored.
PLUS_MINUS character Plus/minus point differential while on court.
GP_RANK character
W_RANK character
L_RANK character
W_PCT_RANK character
MIN_RANK character
FGM_RANK character
FGA_RANK character
FG_PCT_RANK character
FG3M_RANK character
FG3A_RANK character
FG3_PCT_RANK character
FTM_RANK character
FTA_RANK character
FT_PCT_RANK character
OREB_RANK character
DREB_RANK character
REB_RANK character
AST_RANK character
TOV_RANK character
STL_RANK character
BLK_RANK character
BLKA_RANK character
PF_RANK character
PFD_RANK character
PTS_RANK character
PLUS_MINUS_RANK character

ShotDistanceOverall

col_name types description
GROUP_SET character
GROUP_VALUE character
TEAM_ID character Unique team identifier.
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
TEAM_NAME character Full team display name (e.g. 'Las Vegas Aces').
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).

ShotDistanceOnCourt

col_name types description
GROUP_SET character
TEAM_ID character Unique team identifier.
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
TEAM_NAME character Full team display name (e.g. 'Las Vegas Aces').
VS_PLAYER_ID character
VS_PLAYER_NAME character
COURT_STATUS character
GROUP_VALUE character
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).

ShotDistanceOffCourt

col_name types description
GROUP_SET character
TEAM_ID character Unique team identifier.
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
TEAM_NAME character Full team display name (e.g. 'Las Vegas Aces').
VS_PLAYER_ID character
VS_PLAYER_NAME character
COURT_STATUS character
GROUP_VALUE character
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).

ShotAreaOverall

col_name types description
GROUP_SET character
GROUP_VALUE character
TEAM_ID character Unique team identifier.
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
TEAM_NAME character Full team display name (e.g. 'Las Vegas Aces').
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).

ShotAreaOnCourt

col_name types description
GROUP_SET character
TEAM_ID character Unique team identifier.
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
TEAM_NAME character Full team display name (e.g. 'Las Vegas Aces').
VS_PLAYER_ID character
VS_PLAYER_NAME character
COURT_STATUS character
GROUP_VALUE character
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).

ShotAreaOffCourt

col_name types description
GROUP_SET character
TEAM_ID character Unique team identifier.
TEAM_ABBREVIATION character Short team abbreviation (e.g. 'LAS').
TEAM_NAME character Full team display name (e.g. 'Las Vegas Aces').
VS_PLAYER_ID character
VS_PLAYER_NAME character
COURT_STATUS character
GROUP_VALUE character
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).

Author(s)

Saiem Gilani

See Also

Other WNBA Team Functions: wnba_leaguedashteamstats(), wnba_teamdashboardbyclutch(), wnba_teamdashboardbygamesplits(), wnba_teamdashboardbygeneralsplits(), wnba_teamdashboardbylastngames(), wnba_teamdashboardbyopponent(), wnba_teamdashboardbyshootingsplits(), wnba_teamdashboardbyteamperformance(), wnba_teamdashboardbyyearoveryear(), wnba_teamdashlineups(), wnba_teamdetails(), wnba_teamestimatedmetrics(), wnba_teamgamelog(), wnba_teamgamelogs(), wnba_teamgamestreakfinder(), wnba_teamhistoricalleaders(), wnba_teaminfocommon(), wnba_teamplayerdashboard(), wnba_teamplayeronoffdetails(), wnba_teamplayeronoffsummary(), wnba_teams(), wnba_teamyearbyyearstats()


Get WNBA Stats API Team Year by Year Stats

Description

Get WNBA Stats API Team Year by Year Stats

Get WNBA Stats API Team Year by Year Stats

Usage

wnba_teamyearbyyearstats(
  league_id = "10",
  per_mode = "Totals",
  season_type = "Regular Season",
  team_id = "1611661328",
  ...
)

Arguments

league_id

League - default: '00'. Other options include '10': WNBA, '20': G-League

per_mode

Per Mode

season_type

Season Type - Regular Season, Playoffs, All-Star

team_id

Team ID

...

Additional arguments passed to an underlying function like httr.

Details

 wnba_teamyearbyyearstats(team_id = '1611661328')

Value

Return a named list of data frames: TeamStats

TeamStats

col_name types description
TEAM_ID character Unique team identifier.
TEAM_CITY character Team city or region (e.g. 'Las Vegas').
TEAM_NAME character Full team display name (e.g. 'Las Vegas Aces').
YEAR character 4-digit year.
GP character Games played.
WINS character Total wins.
LOSSES character Total losses.
WIN_PCT character Win percentage (0-1 decimal).
CONF_RANK character
DIV_RANK character
PO_WINS character
PO_LOSSES character
CONF_COUNT character
DIV_COUNT character
NBA_FINALS_APPEARANCE character
FGM character Field goals made.
FGA character Field goal attempts.
FG_PCT character Field goal percentage (0-1).
FG3M character Three-point field goals made.
FG3A character Three-point field goal attempts.
FG3_PCT character Three-point field goal percentage (0-1).
FTM character Free throws made.
FTA character Free throw attempts.
FT_PCT character Free throw percentage (0-1).
OREB character Offensive rebounds.
DREB character Defensive rebounds.
REB character Total rebounds.
AST character Assists.
PF character Personal fouls.
STL character Steals.
TOV character Turnovers.
BLK character Blocks.
PTS character Points scored.
PTS_RANK character

Author(s)

Saiem Gilani

See Also

Other WNBA Team Functions: wnba_leaguedashteamstats(), wnba_teamdashboardbyclutch(), wnba_teamdashboardbygamesplits(), wnba_teamdashboardbygeneralsplits(), wnba_teamdashboardbylastngames(), wnba_teamdashboardbyopponent(), wnba_teamdashboardbyshootingsplits(), wnba_teamdashboardbyteamperformance(), wnba_teamdashboardbyyearoveryear(), wnba_teamdashlineups(), wnba_teamdetails(), wnba_teamestimatedmetrics(), wnba_teamgamelog(), wnba_teamgamelogs(), wnba_teamgamestreakfinder(), wnba_teamhistoricalleaders(), wnba_teaminfocommon(), wnba_teamplayerdashboard(), wnba_teamplayeronoffdetails(), wnba_teamplayeronoffsummary(), wnba_teams(), wnba_teamvsplayer()


Get WNBA Stats API Today's Scoreboard

Description

Get WNBA Stats API Today's Scoreboard

Get WNBA Stats API Today's Scoreboard

Usage

wnba_todays_scoreboard(...)

Arguments

...

Additional arguments passed to an underlying function like httr.

Details

  wnba_todays_scoreboard()

Value

Return a data frame with the following columns:

col_name types description
game_id character Unique game identifier.
game_code character ESPN game code (numeric identifier).
game_status integer Game status label.
game_status_text character Game status display text (e.g. 'Final', '4:32 - 4th').
period integer Period of the game (1-4 quarters; 5+ for OT).
game_clock character Game clock.
game_time_utc character Game start time in UTC (ISO 8601 timestamp).
game_et character Game et.
regulation_periods integer Regulation periods.
series_game_number logical Series game number.
series_text logical Series text.
home_team_id integer Unique identifier for the home team.
home_team_name character Home team name.
home_team_city character Home team city / location.
home_team_tricode character Home team three-letter code.
home_wins integer Home team's wins.
home_losses integer Home team's losses.
home_score integer Home team score at the time of the play.
home_in_bonus character Home team's in bonus.
home_timeouts_remaining integer Home team's timeouts remaining.
home_periods list Home team's periods.
away_team_id integer Unique identifier for the away team.
away_team_name character Away team name.
away_team_city character Away team city / location.
away_team_tricode character Away team three-letter code.
away_wins integer Away team's wins.
away_losses integer Away team's losses.
away_score integer Away team score at the time of the play.
away_in_bonus character Away team's in bonus.
away_timeouts_remaining integer Away team's timeouts remaining.
away_periods list Away team's periods.
home_leaders_person_id integer Unique identifier for home leaders person.
home_leaders_name character Home leaders name.
home_leaders_jersey_num character Home team's leaders jersey num.
home_leaders_position character Home team's leaders position.
home_leaders_team_tricode character Home team's leaders team tricode.
home_leaders_player_slug character Home team's leaders player slug.
home_leaders_points integer Home team's leaders points.
home_leaders_rebounds integer Home team's leaders rebounds.
home_leaders_assists integer Home team's leaders assists.
away_leaders_person_id integer Unique identifier for away leaders person.
away_leaders_name character Away leaders name.
away_leaders_jersey_num character Away team's leaders jersey num.
away_leaders_position character Away team's leaders position.
away_leaders_team_tricode character Away team's leaders team tricode.
away_leaders_player_slug character Away team's leaders player slug.
away_leaders_points integer Away team's leaders points.
away_leaders_rebounds integer Away team's leaders rebounds.
away_leaders_assists integer Away team's leaders assists.
pb_odds_team logical Pb odds team.
pb_odds_odds numeric Pb odds odds.
pb_odds_suspended integer Pb odds suspended.

Author(s)

Saiem Gilani

See Also

Other WNBA Schedule Functions: wnba_schedule(), wnba_scoreboardv2(), wnba_scoreboardv3()

Other WNBA Live Functions: wnba_live_pbp()


Get WNBA Stats API Video Events

Description

Get WNBA Stats API Video Events

Get WNBA Stats API Video Events

Usage

wnba_videoevents(game_id = "1022200075", game_event_id = "10", ...)

Arguments

game_id

game_id

game_event_id

game_event_id

...

Additional arguments passed to an underlying function like httr.

Details

  wnba_videoevents(game_id = '1022200075', game_event_id = '10')

Value

Return a list of tibbles: videoUrls, playlist

Author(s)

Saiem Gilani

See Also

Other WNBA Video Functions: wnba_videodetails(), wnba_videodetailsasset(), wnba_videostatus()


Get WNBA Stats API Video Status

Description

Get WNBA Stats API Video Status

Get WNBA Stats API Video Status

Usage

wnba_videostatus(game_date = "2022-06-10", league_id = "10", ...)

Arguments

game_date

game_date

league_id

league_id

...

Additional arguments passed to an underlying function like httr.

Details

  wnba_videostatus(game_date = '2022-06-10', league_id = '10')

Value

Return a list of tibbles: VideoStatus

VideoStatus

col_name types description
GAME_ID character Unique game identifier.
GAME_DATE character Game date (YYYY-MM-DD).
VISITOR_TEAM_ID character Unique identifier for visitor team.
VISITOR_TEAM_CITY character
VISITOR_TEAM_NAME character
VISITOR_TEAM_ABBREVIATION character
HOME_TEAM_ID character Unique identifier for the home team.
HOME_TEAM_CITY character Home team city / location.
HOME_TEAM_NAME character Home team name.
HOME_TEAM_ABBREVIATION character
GAME_STATUS character Game status label.
GAME_STATUS_TEXT character Game status display text (e.g. 'Final', '4:32 - 4th').
IS_AVAILABLE character
PT_XYZ_AVAILABLE character

Author(s)

Saiem Gilani

See Also

Other WNBA Video Functions: wnba_videodetails(), wnba_videodetailsasset(), wnba_videoevents()


Convert a calendar year to a WNBA / NBA season string

Description

Returns a season string of the form YYYY-YY (e.g. 2024 -> "2024-25"). WNBA seasons span a single calendar year, but several Stats API endpoints (and several NBA-derived endpoints used in load helpers) accept the two-year season-string form, so this helper is provided for parity with the analogous helper in the hoopR package.

Usage

year_to_season(year)

Arguments

year

a four-digit calendar year (numeric or character).

Value

A character season string, e.g. "2024-25".