🩼 Injuries

Injuries Object

[
  {
    "player": {
      "id": "PLYR_fef8f29544ce487c91b23eff993abcd5",
      "sportsdataioId": "20001829",
      "oddsjamId": "944B6D4B694A",
      "sportradarId": "98136da3-452f-49dc-a794-1ee9c76443f2",
      "firstName": "Jayson",
      "lastName": "Tatum",
      "sportId": "SPRT_basketball",
      "fullName": "Jayson Tatum"
    },
    "team": {
      "id": "TEAM_0bea24fff0ba45a6ba2f88b0217d224e",
      "name": "Celtics",
      "fullName": "Boston Celtics",
      "abbr": "BOS"
    },
    "status": "Day-To-Day",
    "event": {
      "id": "EVNT_037ada1a90b14c4fa164858b4dbfe9d9",
      "sport": "Basketball",
      "league": "NBA",
      "name": "Atlanta Hawks @ Boston Celtics",
      "nameSpecial": null,
      "startTime": "2025-01-19T00:00:00Z"
    },
    "played": null
  },
  {
    "player": {
      "id": "PLYR_fef8f29544ce487c91b23eff993abcd5",
      "sportsdataioId": "20001829",
      "oddsjamId": "944B6D4B694A",
      "sportradarId": "98136da3-452f-49dc-a794-1ee9c76443f2",
      "firstName": "Jayson",
      "lastName": "Tatum",
      "sportId": "SPRT_basketball",
      "fullName": "Jayson Tatum"
    },
    "team": {
      "id": "TEAM_0bea24fff0ba45a6ba2f88b0217d224e",
      "name": "Celtics",
      "fullName": "Boston Celtics",
      "abbr": "BOS"
    },
    "status": "Day-To-Day",
    "event": {
      "id": "EVNT_a9f1c05190ff4d0c9baf18e312501653",
      "sport": "Basketball",
      "league": "NBA",
      "name": "Boston Celtics @ Golden State Warriors",
      "nameSpecial": null,
      "startTime": "2025-01-20T22:00:00Z"
    },
    "played": true
  },
  {
    "player": {
      "id": "PLYR_fef8f29544ce487c91b23eff993abcd5",
      "sportsdataioId": "20001829",
      "oddsjamId": "944B6D4B694A",
      "sportradarId": "98136da3-452f-49dc-a794-1ee9c76443f2",
      "firstName": "Jayson",
      "lastName": "Tatum",
      "sportId": "SPRT_basketball",
      "fullName": "Jayson Tatum"
    },
    "team": {
      "id": "TEAM_0bea24fff0ba45a6ba2f88b0217d224e",
      "name": "Celtics",
      "fullName": "Boston Celtics",
      "abbr": "BOS"
    },
    "status": "Day-To-Day",
    "event": {
      "id": "EVNT_dea884522ee842db9c7e9ee62f7ff3df",
      "sport": "Basketball",
      "league": "NBA",
      "name": "Chicago Bulls @ Boston Celtics",
      "nameSpecial": null,
      "startTime": "2025-01-30T00:30:00Z"
    },
    "played": true
  }
]

Endpoints

🏥 injuries list

Array Structure

The response is an array of injury objects, where each object represents a player's injury status for a specific upcoming or recent event.

Injury Object

Each injury in the array contains the player details, team information, injury status, and the specific event/game affected.

player (object)

Player information for the injured athlete.

id (string)

Unique player identifier with format PLYR_*.

sportsdataioId (string)

External identifier from SportsData.io API for this player.

oddsjamId (string)

External identifier from OddsJam API for this player.

sportradarId (string)

External identifier from Sportradar API for this player.

firstName (string)

Player's first name.

lastName (string)

Player's last name.

sportId (string)

Sport identifier with format SPRT_*.

fullName (string)

Player's complete name (firstName + lastName).


team (object)

Team information where the injured player is rostered.

id (string)

Unique team identifier with format TEAM_*.

name (string)

Team short name (e.g., "Lakers", "Celtics").

fullName (string)

Team's complete name including city (e.g., "Los Angeles Lakers").

abbr (string)

Standard team abbreviation (e.g., "LAL", "BOS").


status (string)

Injury status description indicating the player's availability and injury details. Common values include:

  • "Questionable - [injury description]"
  • "Doubtful - [injury description]"
  • "Out - [injury description]"
  • "Probable - [injury description]"
  • "IR - [injury description]" (Injured Reserve)

event (object)

Specific game/event that this injury status applies to.

id (string)

Unique event identifier with format EVNT_*.

sport (string)

Sport name (e.g., "Basketball", "Football").

league (string)

League name (e.g., "NBA", "NFL").

name (string)

Event name in format "Away Team @ Home Team".

nameSpecial (string|null)

Special event designation or null for regular games.

startTime (string)

ISO 8601 formatted start time of the event.

sportId (string)

Sport identifier with format SPRT_*.

leagueId (string)

League identifier with format LGUE_*.


played (boolean|null)

Indicates whether the player actually participated in the event despite the injury status:

  • true: Player played despite being on the injury report
  • false: Player did not play due to the injury
  • null: Event has not yet occurred or participation status is pending/unknown