MLB API - Team Wins/Losses in Schedule Endpoints
March 7th, 2025
We've added overall team wins and losses to our RESTful Schedule endpoints. Use these new fields to more easily determine a team's win/loss record prior to and after each game.
home.win
- Number of losses for the home team at the beginning of a game. Total will update if necessary once the game has completed.home.loss
- Number of losses for the home team at the beginning of a game. Total will update if necessary once the game has completed.away.win
- Number of losses for the away team at the beginning of a game. Total will update if necessary once the game has completed.away.loss
- Number of losses for the away team at the beginning of a game. Total will update if necessary once the game has completed.
☑️ Sample Request:
League Schedule - https://api.sportradar.com/mlb/trial/v8/en/games/2025/PRE/schedule.xml?api_key=?api_key=[API_KEY]
🔢 Version
🔁 Endpoints Affected
- Daily Schedule, League Schedule
⚙️ Return Sample
<game id="09f23ca9-221c-485d-a3c4-f5ee7f1d652d" status="canceled" coverage="full" game_number="1" day_night="D" scheduled="2025-02-24T18:05:00+00:00" home_team="2142e1ba-3b40-445c-b8bb-f1f8b1054220" away_team="481dfe7e-5dab-46ab-a49f-9dcc2b6e2cfd" double_header="false" split_squad="false" entry_mode="LDE" reference="778913">
<venue name="BayCare Ballpark" capacity="8500" surface="grass" address="601 Old Coachman Road" city="Clearwater" state="FL" zip="33765" country="USA" id="7f5ccc24-6f45-4c0f-8a20-378f8bbd3ba5" field_orientation="NE" stadium_type="outdoor" time_zone="US/Eastern">
<location lat="27.971580" lng="-82.733910"/>
</venue>
<home name="Phillies" market="Philadelphia" abbr="PHI" id="2142e1ba-3b40-445c-b8bb-f1f8b1054220" win="0" loss="2"/>
<away name="Pirates" market="Pittsburgh" abbr="PIT" id="481dfe7e-5dab-46ab-a49f-9dcc2b6e2cfd" win="2" loss="0"/>
<broadcasts>
<broadcast network="NBCSP+"/>
</broadcasts>
</game>
"games": [
{
"id": "09f23ca9-221c-485d-a3c4-f5ee7f1d652d",
"status": "canceled",
"coverage": "full",
"game_number": 1,
"day_night": "D",
"scheduled": "2025-02-24T18:05:00+00:00",
"home_team": "2142e1ba-3b40-445c-b8bb-f1f8b1054220",
"away_team": "481dfe7e-5dab-46ab-a49f-9dcc2b6e2cfd",
"double_header": false,
"split_squad": false,
"entry_mode": "LDE",
"reference": "778913",
---snip---
},
"home": {
"name": "Phillies",
"market": "Philadelphia",
"abbr": "PHI",
"id": "2142e1ba-3b40-445c-b8bb-f1f8b1054220",
"win": 0,
"loss": 2
},
"away": {
"name": "Pirates",
"market": "Pittsburgh",
"abbr": "PIT",
"id": "481dfe7e-5dab-46ab-a49f-9dcc2b6e2cfd",
"win": 2,
"loss": 0
},
"broadcasts": [
{
"network": "NBCSP+"
}
]
},