Skip to contents

Get the current NBA injury report from RotoWire.

One row per injured player with team, position, the injury, the current designation (Out / Doubtful / Questionable / GTD / Day-To-Day) and a link to the player's RotoWire page. The projected return date is RotoWire subscriber-only content and is returned as NA for non-subscribers.

This is the live replacement for the defunct RotoWorld injuries feed. See also bref_injuries() for the Basketball-Reference injury report.

Usage

rotowire_injuries()

Value

A hoopR_data tibble with one row per injured player:

col_nametypesdescription
player_idcharacterRotoWire player id.
playercharacterPlayer name.
first_namecharacterFirst name.
last_namecharacterLast name.
teamcharacterTeam abbreviation.
positioncharacterPosition.
injurycharacterInjury (body part / description).
statuscharacterInjury designation (Out, GTD, Questionable, ...).
return_datecharacterProjected return (NA unless a subscriber).
urlcharacterRotoWire player page URL.

Examples

# \donttest{
  try(rotowire_injuries())
#> ── NBA injury report from rotowire.com ────────────────────────── hoopR 3.1.0 ──
#>  Data updated: 2026-08-27 18:06:47 UTC
#> # A tibble: 79 × 10
#>    player_id player            first_name last_name team  position injury status
#>    <chr>     <chr>             <chr>      <chr>     <chr> <chr>    <chr>  <chr> 
#>  1 3445      Steven Adams      Steven     Adams     HOU   C        Ankle  Quest…
#>  2 4153      Bam Adebayo       Bam        Adebayo   MIA   C        Back   Proba…
#>  3 5428      Santi Aldama      Santi      Aldama    DAL   F        Knee   Quest…
#>  4 6291      Trey Alexander    Trey       Alexander UTA   G        Ribs   Proba…
#>  5 3456      Giannis Antetoko… Giannis    Antetoko… MIA   F        Knee   Proba…
#>  6 3303      Bradley Beal      Bradley    Beal      LAC   G        Hip    Quest…
#>  7 6608      Nate Bittle       Nate       Bittle    TOR   C        Knee   Quest…
#>  8 6999      Trevon Brazile    Trevon     Brazile   DEN   F        Undis… Quest…
#>  9 4405      Jalen Brunson     Jalen      Brunson   NYK   G        Wrist  Quest…
#> 10 3231      Jimmy Butler      Jimmy      Butler    GSW   F        Knee   Out   
#> # ℹ 69 more rows
#> # ℹ 2 more variables: return_date <chr>, url <chr>
# }