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-03-26 14:27:43 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 players "Player informatio… 2026-03-… 1 1 1 1 0
#> 2 players_compo… "Component files f… 2026-03-… 2 2 2 2 0
#> 3 contracts "OverTheCap contra… 2026-03-… 2 1 0 1 0
#> 4 depth_charts "Depth chart data,… 2026-03-… 26 26 26 3 0
#> 5 rosters "Roster data, acce… 2026-03-… 107 107 107 4 0
#> 6 injuries "Injuries data, ac… 2026-03-… 17 17 17 3 0
#> 7 weekly_rosters "Week-level roster… 2026-03-… 24 24 24 2 0
#> 8 combine "NFL Combine Data … 2026-03-… 1 1 1 1 0
#> 9 espn_data "ESPN Stats" 2026-02-… 2 2 2 2 0
#> 10 nextgen_stats "NFL Next Gen Stat… 2026-02-… 30 3 0 30 0
#> # ℹ 15 more rows
# }