Skip to contents

Get live game scoreboard information from games.

Usage

cfbd_live_scoreboard(division = "fbs", conference = NULL)

Arguments

division

(String optional): Division abbreviation - Select a valid division: fbs/fcs/ii/iii

conference

(String optional): Conference abbreviation - Select a valid FBS conference Conference abbreviations P5: ACC, B12, B1G, SEC, PAC Conference abbreviations G5 and FBS Independents: CUSA, MAC, MWC, Ind, SBC, AAC

Value

cfbd_live_scoreboard() - A data frame with 41 variables:

col_nametypes
game_idinteger
start_datecharacter
start_time_tbdlogical
tvcharacter
neutral_sitelogical
conference_gamelogical
statuscharacter
periodinteger
clockcharacter
situationcharacter
possessioncharacter
last_playcharacter
venue_namecharacter
venue_citycharacter
venue_statecharacter
home_team_idinteger
home_team_namecharacter
home_team_conferencecharacter
home_team_classificationcharacter
home_team_pointsinteger
home_team_line_scores_Q1integer
home_team_line_scores_Q2integer
home_team_line_scores_Q3integer
home_team_line_scores_Q4integer
away_team_idinteger
away_team_namecharacter
away_team_conferencecharacter
away_team_classificationcharacter
away_team_pointsinteger
away_team_line_scores_Q1integer
away_team_line_scores_Q2integer
away_team_line_scores_Q3integer
away_team_line_scores_Q4integer
weather_temperaturenumeric
weather_descriptioncharacter
weather_wind_speednumeric
weather_wind_directioninteger
betting_spreadnumeric
betting_over_undernumeric
betting_home_moneylineinteger
betting_away_moneylineinteger

Examples

# \donttest{
  try(cfbd_live_scoreboard(division='fbs', conference = "B12"))
#> ── Live Scoreboard information from CollegeFootballData.com ── cfbfastR 2.2.0 ──
#>  Data updated: 2026-01-12 12:20:39 UTC
#> # A tibble: 8 × 45
#>     game_id start_date  start_time_tbd tv    neutral_site conference_game status
#>       <int> <chr>       <lgl>          <chr> <lgl>        <lgl>           <chr> 
#> 1 401769071 2026-01-01… FALSE          ESPN  TRUE         FALSE           compl…
#> 2 401778319 2025-12-27… FALSE          ABC   TRUE         FALSE           compl…
#> 3 401778323 2025-12-28… FALSE          ESPN  TRUE         FALSE           compl…
#> 4 401778327 2025-12-31… FALSE          ESPN  TRUE         FALSE           compl…
#> 5 401778329 2025-12-31… FALSE          CBS   TRUE         FALSE           compl…
#> 6 401778331 2025-12-31… FALSE          ESPN  TRUE         FALSE           compl…
#> 7 401778333 2026-01-02… FALSE          ESPN  TRUE         FALSE           compl…
#> 8 401831583 2026-01-03… FALSE          FOX   TRUE         FALSE           compl…
#> # ℹ 38 more variables: period <lgl>, clock <lgl>, situation <chr>,
#> #   possession <chr>, last_play <chr>, venue_name <chr>, venue_city <chr>,
#> #   venue_state <chr>, home_team_id <int>, home_team_name <chr>,
#> #   home_team_conference <chr>, home_team_classification <chr>,
#> #   home_team_points <int>, home_team_line_scores_Q1 <int>,
#> #   home_team_line_scores_Q2 <int>, home_team_line_scores_Q3 <int>,
#> #   home_team_line_scores_Q4 <int>, home_team_line_scores_Q5 <int>, …
# }