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.
Value
A hoopR_data tibble with one row per injured player:
| col_name | types | description |
| player_id | character | RotoWire player id. |
| player | character | Player name. |
| first_name | character | First name. |
| last_name | character | Last name. |
| team | character | Team abbreviation. |
| position | character | Position. |
| injury | character | Injury (body part / description). |
| status | character | Injury designation (Out, GTD, Questionable, ...). |
| return_date | character | Projected return (NA unless a subscriber). |
| url | character | RotoWire player page URL. |
Examples
# \donttest{
try(rotowire_injuries())
#> ── NBA injury report from rotowire.com ────────────────────────── hoopR 3.1.0 ──
#> ℹ Data updated: 2026-06-30 20:02:10 UTC
#> # A tibble: 131 × 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 MEM F Knee Quest…
#> 4 3456 Giannis Antetoko… Giannis Antetoko… MIA F Knee Proba…
#> 5 4397 Marvin Bagley Marvin Bagley DAL C Shoul… Proba…
#> 6 6621 Tamar Bates Tamar Bates UTA G Foot Quest…
#> 7 6556 Carter Bryant Carter Bryant SAS F Not I… Quest…
#> 8 3231 Jimmy Butler Jimmy Butler GSW F Knee Out
#> 9 5938 Matas Buzelis Matas Buzelis CHI F Ankle Proba…
#> 10 3450 Kentavious Caldw… Kentavious Caldwell… MEM G Finger Proba…
#> # ℹ 121 more rows
#> # ℹ 2 more variables: return_date <chr>, url <chr>
# }
