Skip to main content

MLB Season Standings API Documentation

Requirement

You need an API key to use SportsBlaze. Get access at www.sportsblaze.com.

Update Frequency

This endpoint updates every 60 seconds.

Description

This endpoint returns MLB teams, regular season standings, and records.

API Endpoint

https://api.sportsblaze.com/mlb/v1/standings/{season}.json

Parameters

key (required)

Your SportsBlaze API key.

team

The team id, name, or abbreviation (e.g. 88073836-4f71-563e-b216-300a17916af6, Los Angeles Dodgers, or LAD). Separate multiple teams with a comma (e.g. Los Angeles Dodgers,New York Yankees).

division

The team division (e.g. National League West or American League East). Separate multiple divisions with a comma (e.g. National League West,American League East).

conference

The team conference (e.g. National League or American League).

Example URLs

2025 season standings:

https://api.sportsblaze.com/mlb/v1/standings/2025.json?key=your_key

2025 season standings, Los Angeles Dodgers team:

https://api.sportsblaze.com/mlb/v1/standings/2025.json?key=your_key&team=Los%20Angeles%20Dodgers

2025 season standings, National League West & American League East divisions:

https://api.sportsblaze.com/mlb/v1/standings/2025.json?key=your_key&division=National%20League%20West,American%20League%20East

Example Response

{
"league": {
"id": "mlb",
"name": "MLB",
"sport": "Baseball"
},
"season": {
"year": 2025,
"type": "Regular Season"
},
"teams": [
{
"id": "88073836-4f71-563e-b216-300a17916af6",
"name": "Los Angeles Dodgers",
"abbreviation": "LAD",
"location": "Los Angeles",
"nickname": "Dodgers",
"division": "National League West",
"conference": "National League",
"logo": "https://www.mlbstatic.com/team-logos/team-cap-on-light/119.svg",
"standings": [
{
"name": "Division",
"sequence": 2
},
{
"name": "Conference",
"sequence": 2
},
{
"name": "League",
"sequence": 2
}
],
"streak": {
"type": "Win",
"number": 1,
"code": "W1"
},
"records": [
{
"split": "Regular Season",
"games": 23,
"wins": 16,
"losses": 7,
"pct": 0.696
}
]
},
{
"id": "d0b89792-122b-564d-acc2-52ea3c1d9e10",
"name": "New York Yankees",
"abbreviation": "NYY",
"location": "New York",
"nickname": "Yankees",
"division": "American League East",
"conference": "American League",
"logo": "https://www.mlbstatic.com/team-logos/team-cap-on-light/147.svg",
"standings": [
{
"name": "Division",
"sequence": 1
},
{
"name": "Conference",
"sequence": 1
},
{
"name": "League",
"sequence": 4
}
],
"streak": {
"type": "Win",
"number": 1,
"code": "W1"
},
"records": [
{
"split": "Regular Season",
"games": 22,
"wins": 14,
"losses": 8,
"pct": 0.636
}
]
}
],
"updated": "2025-04-21T16:08:17Z"
}