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.0.0 ──
#>  Data updated: 2025-08-25 19:40:34 UTC
#> # A tibble: 19 × 41
#>      game_id start_date start_time_tbd tv    neutral_site conference_game status
#>        <int> <chr>      <lgl>          <chr> <lgl>        <lgl>           <chr> 
#>  1 401752667 2025-08-3… FALSE          FOX   FALSE        FALSE           sched…
#>  2 401752796 2025-08-2… FALSE          ESPN  TRUE         FALSE           sched…
#>  3 401752800 2025-08-3… FALSE          FOX   FALSE        FALSE           sched…
#>  4 401754375 2025-08-3… FALSE          ESPN  FALSE        FALSE           sched…
#>  5 401754523 2025-09-0… FALSE          ESPN  FALSE        FALSE           sched…
#>  6 401754523 2025-09-0… FALSE          ESPNU FALSE        FALSE           sched…
#>  7 401756846 2025-08-2… FALSE          ESPN  TRUE         TRUE            compl…
#>  8 401756847 2025-08-2… FALSE          FOX   FALSE        FALSE           compl…
#>  9 401756848 2025-08-2… FALSE          NA    FALSE        FALSE           sched…
#> 10 401756849 2025-08-3… FALSE          TNT   FALSE        FALSE           sched…
#> 11 401756850 2025-08-3… FALSE          NA    FALSE        FALSE           sched…
#> 12 401756851 2025-08-3… FALSE          NA    FALSE        FALSE           sched…
#> 13 401756852 2025-08-2… FALSE          NA    FALSE        FALSE           sched…
#> 14 401756853 2025-08-3… FALSE          FOX   FALSE        FALSE           sched…
#> 15 401756854 2025-08-2… FALSE          NA    FALSE        FALSE           sched…
#> 16 401756855 2025-08-3… FALSE          NA    FALSE        FALSE           sched…
#> 17 401756876 2025-08-2… FALSE          NA    FALSE        FALSE           sched…
#> 18 401756877 2025-08-3… FALSE          NA    FALSE        FALSE           sched…
#> 19 401756878 2025-08-3… FALSE          NA    FALSE        FALSE           sched…
#> # ℹ 34 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>, away_team_id <int>, away_team_name <chr>, …
# }