Skip to contents

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().

Usage

nflverse_releases(.token = "default")

Arguments

.token

a GitHub API token, "default" uses gh::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: 2025-08-18 10:27:25 UTC
#> # A tibble: 22 × 8
#>    release_name   release_description timestamp   rds parquet   csv csv_gz   zip
#>    <chr>          <chr>               <chr>     <int>   <int> <int>  <int> <int>
#>  1 players        "Player informatio… 2025-08-…     1       1     1      1     0
#>  2 contracts      "OverTheCap contra… 2025-08-…     2       1     0      1     0
#>  3 players_compo… "Component files f… 2025-08-…     2       2     2      2     0
#>  4 depth_charts   "Depth chart data,… 2025-08-…    25      25    25      2     0
#>  5 rosters        "Roster data, acce… 2025-08-…   106     106   106      3     0
#>  6 weekly_rosters "Week-level roster… 2025-08-…    24      24    24      2     0
#>  7 snap_counts    "Snap counts data,… 2025-08-…    13      13    14     13     0
#>  8 misc           "Various bits of d… 2025-08-…     7       1     6      0     0
#>  9 stats_team      NA                 2025-08-…   104     104   104    104     0
#> 10 stats_player    NA                 2025-08-…   104     104   104    104     0
#> # ℹ 12 more rows
# }