Skip to contents

Get the current scoreboard from the CollegeBasketballData API.

Usage

cbbd_scoreboard(conference = NULL)

Arguments

conference

(character optional): Conference abbreviation filter.

Value

A hoopR_data tibble with one row per game. The home_team, away_team and betting objects are flattened into home_team_*, away_team_* and betting_* columns. Key identifying columns:

col_nametypesdescription
idintegerCollegeBasketballData game id.
start_datecharacterGame start date (ISO 8601).
tvcharacterBroadcast TV network.
neutral_sitelogicalWhether the game is at a neutral site.
conference_gamelogicalWhether the game is a conference game.
statuscharacterGame status.
periodintegerCurrent period.
clockcharacterGame clock.
venuecharacterVenue name.

Examples

# \donttest{
  try(cbbd_scoreboard(conference = "ACC"))
#>  2026-06-09 22:48:25.19112: Invalid arguments or no scoreboard data available!
#>  Args: conference = "ACC"
#>  Error: api.collegebasketballdata.com requires an API key.        See ?register_cbbd for details.
#> data frame with 0 columns and 0 rows
# }