Skip to contents

Enumerate every MBB team in the Fox Sports (Bifrost) directory. A single fox_mbb_teams() call only returns the seed team's conference, so this walks unseen team ids (one seed per conference) and unions the results.

Usage

fox_mbb_teams_all(max_id = 500, max_calls = 60)

Arguments

max_id

Highest Fox team id to probe as a seed (default 500).

max_calls

Safety cap on the number of standings calls (default 60).

Value

A hoopR_data tibble, one row per team: fox_team_id, fox_team_name, fox_section.

Examples

# \donttest{
  try(fox_mbb_teams_all())
#>  2026-06-30 19:34:34.456999: no Fox CBK teams data available!
#>  Error: The API returned an error
#>  2026-06-30 19:34:38.095195: no Fox CBK teams data available!
#>  Error: The API returned an error
#>  2026-06-30 19:34:39.444427: no Fox CBK teams data available!
#>  Error: The API returned an error
#>  2026-06-30 19:34:39.650663: no Fox CBK teams data available!
#>  Error: The API returned an error
#>  2026-06-30 19:34:40.309807: no Fox CBK teams data available!
#>  Error: The API returned an error
#>  2026-06-30 19:34:40.781361: no Fox CBK teams data available!
#>  Error: The API returned an error
#>  2026-06-30 19:34:40.938524: no Fox CBK teams data available!
#>  Error: The API returned an error
#>  2026-06-30 19:34:41.136508: no Fox CBK teams data available!
#>  Error: The API returned an error
#>  2026-06-30 19:34:41.383242: no Fox CBK teams data available!
#>  Error: The API returned an error
#>  2026-06-30 19:34:41.707271: no Fox CBK teams data available!
#>  Error: The API returned an error
#>  2026-06-30 19:34:41.864155: no Fox CBK teams data available!
#>  Error: The API returned an error
#>  2026-06-30 19:34:42.044193: no Fox CBK teams data available!
#>  Error: The API returned an error
#>  2026-06-30 19:34:42.206191: no Fox CBK teams data available!
#>  Error: The API returned an error
#>  2026-06-30 19:34:42.613533: no Fox CBK teams data available!
#>  Error: The API returned an error
#>  2026-06-30 19:34:42.875467: no Fox CBK teams data available!
#>  Error: The API returned an error
#>  2026-06-30 19:34:43.120079: no Fox CBK teams data available!
#>  Error: The API returned an error
#>  2026-06-30 19:34:43.468115: no Fox CBK teams data available!
#>  Error: The API returned an error
#>  2026-06-30 19:34:43.661973: no Fox CBK teams data available!
#>  Error: The API returned an error
#>  2026-06-30 19:34:43.937605: no Fox CBK teams data available!
#>  Error: The API returned an error
#>  2026-06-30 19:34:44.138946: no Fox CBK teams data available!
#>  Error: The API returned an error
#>  2026-06-30 19:34:44.332976: no Fox CBK teams data available!
#>  Error: The API returned an error
#>  2026-06-30 19:34:44.614761: no Fox CBK teams data available!
#>  Error: The API returned an error
#>  2026-06-30 19:34:44.858703: no Fox CBK teams data available!
#>  Error: The API returned an error
#>  2026-06-30 19:34:45.228147: no Fox CBK teams data available!
#>  Error: The API returned an error
#>  2026-06-30 19:34:45.397381: no Fox CBK teams data available!
#>  Error: The API returned an error
#>  2026-06-30 19:34:45.787303: no Fox CBK teams data available!
#>  Error: The API returned an error
#>  2026-06-30 19:34:45.977326: no Fox CBK teams data available!
#>  Error: The API returned an error
#>  2026-06-30 19:34:46.155998: no Fox CBK teams data available!
#>  Error: The API returned an error
#>  2026-06-30 19:34:46.541377: no Fox CBK teams data available!
#>  Error: The API returned an error
#> ── Fox Sports MBB full team directory ─────────────────────────── hoopR 3.1.0 ──
#>  Data updated: 2026-06-30 19:34:46 UTC
#> # A tibble: 365 × 3
#>    fox_team_id fox_team_name              fox_section   
#>    <chr>       <chr>                      <chr>         
#>  1 236         Navy Midshipmen            Patriot League
#>  2 232         Colgate Raiders            Patriot League
#>  3 235         Lehigh Mountain Hawks      Patriot League
#>  4 1           Boston University Terriers Patriot League
#>  5 104         American Eagles            Patriot League
#>  6 150         Loyola Maryland Greyhounds Patriot League
#>  7 234         Lafayette Leopards         Patriot League
#>  8 231         Bucknell Bison             Patriot League
#>  9 230         Army Black Knights         Patriot League
#> 10 233         Holy Cross Crusaders       Patriot League
#> # ℹ 355 more rows
# }