Skip to contents

Get College Football Playoff bracket information Returns the College Football Playoff bracket for a season.

Usage

cfbd_playoffs_cfp(year, proxy = NULL)

Arguments

year

(Integer required): Season, 4 digits (YYYY).
Minimum value accepted: 2014

proxy

(List optional): Per-call proxy override passed to get_req(). NULL (default) falls back to getOption("cfbfastR.proxy") and then the http(s)_proxy environment variables, so a caller can override the shared setting for one endpoint.

Value

cfbd_playoffs_cfp() - A tibble with 46 columns:

col_nametypesdescription
round_codecharacterPlayoff round code (first_round, quarterfinal, semifinal, championship).
round_namecharacterHuman-readable playoff round name.
round_orderintegerOrdinal position of the round in the bracket.
idintegerRecord identifier.
bracket_slotcharacterBracket position code for the matchup (e.g. FR1, QF2).
roundcharacterPlayoff round code.
round_name_2characterRound name 2.
round_order_2integerRound order 2.
matchup_orderintegerOrdinal position of the matchup within its round.
start_datecharacterScheduled start date and time (ISO 8601).
bowl_namecharacterBowl or site name hosting the matchup.
game_idintegerReferencing game id.
game_start_datecharacterGame scheduled start date and time (ISO 8601).
game_completedlogicalGame completion flag.
game_home_pointsintegerGame home points.
game_away_pointsintegerGame away points.
game_venue_idintegerGame referencing venue id.
game_venuecharacterGame venue name.
game_home_team_idintegerHome team identifier.
game_home_team_schoolcharacterHome team school name.
game_home_team_conferencecharacterHome team conference.
game_away_team_idintegerAway team identifier.
game_away_team_schoolcharacterAway team school name.
game_away_team_conferencecharacterAway team conference.
advances_to_matchup_idintegerNext-matchup matchup id.
advances_to_bracket_slotcharacterNext-matchup bracket position code for the matchup (e.g. FR1, QF2).
advances_to_positionintegerNext-matchup bracket position.
slot1_positionintegerFirst bracket slot bracket position.
slot1_seedintegerFirst bracket slot seed.
slot1_team_idintegerFirst bracket slot referencing team id.
slot1_schoolcharacterFirst bracket slot school name.
slot1_conferencecharacterFirst bracket slot conference.
slot2_positionintegerSecond bracket slot bracket position.
slot2_seedintegerSecond bracket slot seed.
slot2_team_idintegerSecond bracket slot referencing team id.
slot2_schoolcharacterSecond bracket slot school name.
slot2_conferencecharacterSecond bracket slot conference.
seasonintegerFour-digit season year.
competitioncharacterCompetition identifier (e.g. cfp).
formatcharacterBracket format descriptor.
team_countintegerNumber of teams in the field.
statuscharacterStatus of the competition.
champion_idintegerReferencing team id of the champion.
champion_schoolcharacterSchool name of the champion.
champion_conferencecharacterConference of the champion.
advances_tologicalAdvances to.

See also

Examples

# \donttest{
  try(cfbd_playoffs_cfp(year = 2024))
#> ── Get College Football Playoff bracket information from CollegeFootballData.com
#>  Data updated: 2026-08-19 17:55:30 UTC
#> # A tibble: 11 × 46
#>    round_code   round_name     round_order    id bracket_slot round round_name_2
#>    <chr>        <chr>                <int> <int> <chr>        <chr> <chr>       
#>  1 first_round  First Round              1    31 FR1          firs… First Round 
#>  2 first_round  First Round              1    32 FR2          firs… First Round 
#>  3 first_round  First Round              1    33 FR3          firs… First Round 
#>  4 first_round  First Round              1    34 FR4          firs… First Round 
#>  5 quarterfinal Quarterfinal             2    35 QF1          quar… Quarterfinal
#>  6 quarterfinal Quarterfinal             2    36 QF2          quar… Quarterfinal
#>  7 quarterfinal Quarterfinal             2    37 QF3          quar… Quarterfinal
#>  8 quarterfinal Quarterfinal             2    38 QF4          quar… Quarterfinal
#>  9 semifinal    Semifinal                3    39 SF1          semi… Semifinal   
#> 10 semifinal    Semifinal                3    40 SF2          semi… Semifinal   
#> 11 championship National Cham…           4    41 CH           cham… National Ch…
#> # ℹ 39 more variables: round_order_2 <int>, matchup_order <int>,
#> #   start_date <chr>, bowl_name <chr>, game_id <int>, game_start_date <chr>,
#> #   game_completed <lgl>, game_home_points <int>, game_away_points <int>,
#> #   game_venue_id <int>, game_venue <chr>, game_home_team_id <int>,
#> #   game_home_team_school <chr>, game_home_team_conference <chr>,
#> #   game_away_team_id <int>, game_away_team_school <chr>,
#> #   game_away_team_conference <chr>, advances_to_matchup_id <int>, …
# }