Skip to contents

Get a coach profile Biographical profile for a single coach.

Usage

cfbd_coaches_profile(coach_id, proxy = NULL)

Arguments

coach_id

(Integer required): Coach identifier.

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_coaches_profile() - A tibble with 19 columns:

col_nametypesdescription
idintegerRecord identifier.
first_namecharacterFirst name.
last_namecharacterLast name.
display_namelogicalDisplay name.
current_teamlogicalCurrent team.
birth_datelogicalBirth date and time (ISO 8601).
alma_materlogicalAlma mater.
graduation_yearlogicalGraduation year.
wikidata_idlogicalWikidata identifier.
hall_of_fame_yearlogicalHall of fame year.
career_seasonsintegerSeasons coached across the career.
career_teamsintegerDistinct teams coached.
career_first_yearintegerFirst season of the coaching career.
career_last_yearintegerMost recent season coached.
career_gamesintegerCareer games coached.
career_winsintegerCareer wins.
career_lossesintegerCareer losses.
career_tiesintegerCareer ties.
career_win_percentagenumericCareer winning percentage.

See also

Examples

# \donttest{
  try(cfbd_coaches_profile(coach_id = 1))
#> ── Get a coach profile from CollegeFootballData.com ────────── cfbfastR 2.3.0 ──
#>  Data updated: 2026-08-19 17:52:04 UTC
#> # A tibble: 1 × 20
#>      id first_name last_name display_name  current_team birth_date alma_mater_id
#>   <int> <chr>      <chr>     <chr>         <lgl>        <chr>              <int>
#> 1     1 Steve      Addazio   Steve Addazio NA           1959-06-01          2115
#> # ℹ 13 more variables: alma_mater_school <chr>, graduation_year <int>,
#> #   wikidata_id <chr>, hall_of_fame_year <lgl>, career_seasons <int>,
#> #   career_teams <int>, career_first_year <int>, career_last_year <int>,
#> #   career_games <int>, career_wins <int>, career_losses <int>,
#> #   career_ties <int>, career_win_percentage <dbl>
# }