This functions lists all nflverse data releases that are available
in the nflverse-data repo. Release names can be used for downloads in
nflverse_download().
Arguments
- .token
a GitHub API token,
"default"usesgh::gh_token()
Value
A dataframe containing release names, release descriptions, and other relevant release information.
Examples
# \donttest{
try( # avoids cran failures, can skip in normal usage
nflverse_releases()
)
#> ── nflverse release listing ────────────────────────────────────────────────────
#> ℹ Data updated: 2026-09-07 17:12:03 UTC
#> # A tibble: 25 × 8
#> release_name release_description timestamp rds parquet csv csv_gz zip
#> <chr> <chr> <chr> <int> <int> <int> <int> <int>
#> 1 schedules "NFL game/schedule… 2026-09-… 1 1 1 1 0
#> 2 espn_data "ESPN Stats" 2026-09-… 2 2 2 2 0
#> 3 players "Player informatio… 2026-09-… 1 1 1 1 0
#> 4 contracts "OverTheCap contra… 2026-09-… 2 1 0 1 0
#> 5 players_compo… "Component files f… 2026-09-… 2 2 2 2 0
#> 6 depth_charts "Depth chart data,… 2026-09-… 26 26 26 3 0
#> 7 rosters "Roster data, acce… 2026-09-… 107 107 107 4 0
#> 8 weekly_rosters "Week-level roster… 2026-09-… 25 25 25 3 0
#> 9 nextgen_stats "NFL Next Gen Stat… 2026-09-… 30 3 0 30 0
#> 10 injuries "Injuries data, ac… 2026-09-… 18 18 18 4 0
#> # ℹ 15 more rows
# }