Skip to contents

Get Fox Sports (Bifrost) WNBA / women's college basketball (WBB) team game log. fox_wnba_team_gamelog() hits the wnba slug; fox_wbb_team_gamelog() hits the wcbk slug.

Usage

fox_wnba_team_gamelog(team_id)

fox_wbb_team_gamelog(team_id)

Arguments

team_id

Fox Bifrost team id.

Value

A wehoop_data tibble (long): team_id, season_type, category, game_id, game_date, opponent, stat, value.

Examples

# \donttest{
  try(fox_wnba_team_gamelog("1"))
#> ── Fox Sports WNBA gamelog ───────────────────────────────────── wehoop 3.0.0 ──
#>  Data updated: 2026-06-12 14:53:04 UTC
#> # A tibble: 165 × 8
#>    team_id season_type    category game_id game_date opponent stat         value
#>    <chr>   <chr>          <chr>    <chr>   <chr>     <chr>    <chr>        <chr>
#>  1 1       REGULAR SEASON scoring  2238    6/11      NYL      fgm          33   
#>  2 1       REGULAR SEASON scoring  2238    6/11      NYL      fga          75   
#>  3 1       REGULAR SEASON scoring  2238    6/11      NYL      fg_percent   44.0 
#>  4 1       REGULAR SEASON scoring  2238    6/11      NYL      ftm          15   
#>  5 1       REGULAR SEASON scoring  2238    6/11      NYL      fta          27   
#>  6 1       REGULAR SEASON scoring  2238    6/11      NYL      ft_percent   56.0 
#>  7 1       REGULAR SEASON scoring  2238    6/11      NYL      x3fgm        9    
#>  8 1       REGULAR SEASON scoring  2238    6/11      NYL      x3fga        29   
#>  9 1       REGULAR SEASON scoring  2238    6/11      NYL      x3fg_percent 31.0 
#> 10 1       REGULAR SEASON scoring  2238    6/11      NYL      pts          90   
#> # ℹ 155 more rows
# }
# \donttest{
  try(fox_wbb_team_gamelog("11"))
#> ── Fox Sports WCBK gamelog ───────────────────────────────────── wehoop 3.0.0 ──
#>  Data updated: 2026-06-12 14:53:04 UTC
#> # A tibble: 110 × 8
#>    team_id season_type category game_id game_date opponent stat         value
#>    <chr>   <chr>       <chr>    <chr>   <chr>     <chr>    <chr>        <chr>
#>  1 11      POSTSEASON  scoring  389046  4/3       SCAR     fgm          19   
#>  2 11      POSTSEASON  scoring  389046  4/3       SCAR     fga          61   
#>  3 11      POSTSEASON  scoring  389046  4/3       SCAR     fg_percent   31.1 
#>  4 11      POSTSEASON  scoring  389046  4/3       SCAR     ftm          4    
#>  5 11      POSTSEASON  scoring  389046  4/3       SCAR     fta          6    
#>  6 11      POSTSEASON  scoring  389046  4/3       SCAR     ft_percent   66.7 
#>  7 11      POSTSEASON  scoring  389046  4/3       SCAR     x3fgm        6    
#>  8 11      POSTSEASON  scoring  389046  4/3       SCAR     x3fga        21   
#>  9 11      POSTSEASON  scoring  389046  4/3       SCAR     x3fg_percent 28.6 
#> 10 11      POSTSEASON  scoring  389046  4/3       SCAR     pts          48   
#> # ℹ 100 more rows
# }