NFL injury reports, with a date and a week.
Pull a team's injury report as JSON. The report date, season, week, and source link are on the row.
On the Stripe page, enter STARTER30 for 30% off the first month. Tryout at $9 is there if you only want to see the JSON.
Call
curl -s "https://api.clearsportsapi.com/api/v1/nfl/injury-stats?team_id=nfl_phi" \
-H "Authorization: Bearer YOUR_API_KEY"Shape
{
"player_name": "Dallas Goedert",
"team_id": "nfl_phi",
"injury_status": "Doubtful",
"injury_type": "Knee - MCL",
"injury_location": "Leg",
"report_date": "2026-09-21",
"season": 2026,
"season_type": "regular",
"week": 2,
"source_url": "https://site.api.espn.com/apis/site/v2/sports/football/nfl/injuries?team=PHI"
}One team per call
Pass team_id, for example nfl_phi. The response is injury_game_stats plus a count.
Report date is the report
report_date is the date on the injury report. updated_date is when we wrote the row, as unix seconds.
Season and week
season_type is preseason, regular, or postseason. week is the closest NFL week to that report date.
FAQ
Does the NFL injury API include a report date?
Yes. report_date, season, season_type, week, and source_url are on each injury row for the 2026 season.
What does an empty injury list mean?
The report has not been published for that team yet. An empty list is not the same as a healthy roster.
How many calls does a Sunday of injury polling use?
One call per team. Thirty-two teams, a few times on Sunday, is still inside Starter's 100,000 credits. Tryout's 1,000 calls are for a first look.