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-13 07:19:31.770842: no Fox CBK teams data available!
#>  Error: The API returned an error
#>  2026-06-13 07:19:33.293972: no Fox CBK teams data available!
#>  Error: The API returned an error
#>  2026-06-13 07:19:33.986562: no Fox CBK teams data available!
#>  Error: The API returned an error
#>  2026-06-13 07:19:34.313592: no Fox CBK teams data available!
#>  Error: The API returned an error
#>  2026-06-13 07:19:34.722788: no Fox CBK teams data available!
#>  Error: The API returned an error
#>  2026-06-13 07:19:35.104403: no Fox CBK teams data available!
#>  Error: The API returned an error
#>  2026-06-13 07:19:35.414247: no Fox CBK teams data available!
#>  Error: The API returned an error
#>  2026-06-13 07:19:35.604199: no Fox CBK teams data available!
#>  Error: The API returned an error
#>  2026-06-13 07:19:35.796187: no Fox CBK teams data available!
#>  Error: The API returned an error
#>  2026-06-13 07:19:35.970838: no Fox CBK teams data available!
#>  Error: The API returned an error
#>  2026-06-13 07:19:36.143226: no Fox CBK teams data available!
#>  Error: The API returned an error
#>  2026-06-13 07:19:36.537759: no Fox CBK teams data available!
#>  Error: The API returned an error
#>  2026-06-13 07:19:36.72154: no Fox CBK teams data available!
#>  Error: The API returned an error
#>  2026-06-13 07:19:36.892925: no Fox CBK teams data available!
#>  Error: The API returned an error
#>  2026-06-13 07:19:37.082249: no Fox CBK teams data available!
#>  Error: The API returned an error
#>  2026-06-13 07:19:37.266495: no Fox CBK teams data available!
#>  Error: The API returned an error
#>  2026-06-13 07:19:37.452229: no Fox CBK teams data available!
#>  Error: The API returned an error
#>  2026-06-13 07:19:37.66323: no Fox CBK teams data available!
#>  Error: The API returned an error
#>  2026-06-13 07:19:37.849947: no Fox CBK teams data available!
#>  Error: The API returned an error
#>  2026-06-13 07:19:38.312213: no Fox CBK teams data available!
#>  Error: The API returned an error
#>  2026-06-13 07:19:38.523232: no Fox CBK teams data available!
#>  Error: The API returned an error
#>  2026-06-13 07:19:38.854564: no Fox CBK teams data available!
#>  Error: The API returned an error
#>  2026-06-13 07:19:39.087394: no Fox CBK teams data available!
#>  Error: The API returned an error
#>  2026-06-13 07:19:39.394678: no Fox CBK teams data available!
#>  Error: The API returned an error
#>  2026-06-13 07:19:39.598475: no Fox CBK teams data available!
#>  Error: The API returned an error
#>  2026-06-13 07:19:39.772852: no Fox CBK teams data available!
#>  Error: The API returned an error
#>  2026-06-13 07:19:39.998878: no Fox CBK teams data available!
#>  Error: The API returned an error
#>  2026-06-13 07:19:40.189561: no Fox CBK teams data available!
#>  Error: The API returned an error
#>  2026-06-13 07:19:40.487688: 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-13 07:19:40 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
# }