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_nametypesdescription
game_idintegerCFBD-internal game id; join key to other CFBD endpoints.
start_datecharacterScheduled kickoff timestamp (ISO 8601, UTC).
start_time_tbdlogicalTRUE if the scheduled kickoff time is still to be determined.
tvcharacterTelevision network broadcasting the game (e.g. "ESPN", "ABC").
neutral_sitelogicalTRUE if the game is being played at a neutral site.
conference_gamelogicalTRUE if both teams are in the same conference.
statuscharacterGame status (e.g. "scheduled", "in_progress", "completed").
periodintegerCurrent period/quarter number (1-4, 5+ for overtime).
clockcharacterGame clock display as "MM:SS" remaining in the current period.
situationcharacterFree-text down-and-distance / field-position summary for the current play.
possessioncharacterAbbreviation of the team currently in possession.
last_playcharacterFree-text description of the most recent play.
venue_namecharacterStadium / venue name.
venue_citycharacterCity where the venue is located.
venue_statecharacterState (or province/country) where the venue is located.
home_team_idintegerCFBD-internal team id for the home team.
home_team_namecharacterFull home team name (e.g. "Georgia").
home_team_conferencecharacterConference name of the home team.
home_team_classificationcharacterDivision classification of the home team (fbs/fcs/ii/iii).
home_team_pointsintegerCurrent total points scored by the home team.
home_team_line_scores_Q1integerHome team points scored in the first quarter.
home_team_line_scores_Q2integerHome team points scored in the second quarter.
home_team_line_scores_Q3integerHome team points scored in the third quarter.
home_team_line_scores_Q4integerHome team points scored in the fourth quarter.
away_team_idintegerCFBD-internal team id for the away team.
away_team_namecharacterFull away team name (e.g. "Auburn").
away_team_conferencecharacterConference name of the away team.
away_team_classificationcharacterDivision classification of the away team (fbs/fcs/ii/iii).
away_team_pointsintegerCurrent total points scored by the away team.
away_team_line_scores_Q1integerAway team points scored in the first quarter.
away_team_line_scores_Q2integerAway team points scored in the second quarter.
away_team_line_scores_Q3integerAway team points scored in the third quarter.
away_team_line_scores_Q4integerAway team points scored in the fourth quarter.
weather_temperaturenumericTemperature at kickoff, in degrees Fahrenheit.
weather_descriptioncharacterFree-text weather description (e.g. "Clear", "Light rain").
weather_wind_speednumericWind speed, in miles per hour.
weather_wind_directionintegerWind direction, in degrees (0-360, 0 = north).
betting_spreadnumericPre-game point spread relative to the home team (negative = home favored).
betting_over_undernumericPre-game over/under (total) line in points.
betting_home_moneylineintegerAmerican-odds moneyline for the home team.
betting_away_moneylineintegerAmerican-odds moneyline for the away team.

Examples

# \donttest{
  try(cfbd_live_scoreboard(division='fbs', conference = "B12"))
#> ── Live Scoreboard information from CollegeFootballData.com ── cfbfastR 2.3.0 ──
#>  Data updated: 2026-06-09 19:57:51 UTC
#> # A tibble: 120 × 37
#>      game_id start_date start_time_tbd tv    neutral_site conference_game status
#>        <int> <chr>      <lgl>          <chr> <lgl>        <lgl>           <chr> 
#>  1 401856636 2026-09-0… FALSE          ABC   TRUE         FALSE           sched…
#>  2 401856670 2026-09-1… TRUE           NA    FALSE        FALSE           sched…
#>  3 401856678 2026-09-1… TRUE           NA    FALSE        FALSE           sched…
#>  4 401856683 2026-09-1… TRUE           NA    FALSE        FALSE           sched…
#>  5 401856766 2026-08-2… FALSE          ESPN  TRUE         FALSE           sched…
#>  6 401856767 2026-09-0… TRUE           NA    FALSE        FALSE           sched…
#>  7 401856768 2026-09-0… TRUE           NA    FALSE        FALSE           sched…
#>  8 401856769 2026-09-0… TRUE           NA    FALSE        FALSE           sched…
#>  9 401856770 2026-09-0… TRUE           NA    FALSE        FALSE           sched…
#> 10 401856771 2026-09-0… TRUE           NA    FALSE        FALSE           sched…
#> # ℹ 110 more rows
#> # ℹ 30 more variables: period <lgl>, clock <lgl>, situation <lgl>,
#> #   possession <lgl>, last_play <lgl>, 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 <lgl>, home_team_line_scores_Q1 <lgl>,
#> #   home_team_win_probability <lgl>, away_team_id <int>, …
# }