get
https://api.rotowire.com/Baseball/MLB/Injuries.php
Attributes
Top-Level Fields
| Field | Type | Description |
|---|---|---|
Players | array |
Players Object
| Field | Type | Description |
|---|---|---|
Id | integer | The RotoWire player ID. |
OnDisabledList | integer | 1 = on disabled list, 0 = not on disabled list. |
FirstName | string | |
LastName | string | |
Position | string | |
Injury | object | Injury information for the player. Fields are empty strings when the player is not injured. Note: status value casing differs by endpoint — the News endpoints return uppercase (e.g. 10-DAY IL, DAY-TO-DAY) while the Injuries endpoint returns title case (e.g. 10-Day IL, Day-To-Day). |
Team | object | The player's current team. Contains only Id and Code (no Name or Nickname). Both fields will be absent when the player has been released and has no active team affiliation. |
InjuryType | string | |
InjuryStatus | string | Current injury designation. Uses title-case values (unlike the News endpoints which return uppercase). Known values: Day-To-Day, Out, 7-Day IL, 10-Day IL, 15-Day IL, 60-Day IL, Suspension, Paternity, Bereavement, Developmental List. |
ReturnDate | string | Estimated return date. Format YYYY-MM-DD. Empty string when not applicable. |
InjuryDetail | string | |
InjurySide | string | Which side of the body the injury occurred on. Empty string when not applicable. |
Example Response
{
"Players": [
{
"Id": 10501,
"OnDisabledList": 1,
"FirstName": "Wade",
"LastName": "Miley",
"Position": "P",
"Injury": {
"Type": "Forearm",
"Status": "Out",
"Detail": "Strain",
"Side": "Left",
"ReturnDate": "2026-05-11"
},
"Team": {},
"InjuryType": "Forearm",
"InjuryStatus": "Out",
"InjuryDetail": "Strain",
"InjurySide": "Left",
"ReturnDate": "2026-05-11"
}
]
}