Skip to main content

Standings API Documentation

INFO

Authentication is not required to access SportsBlaze.

Description

This endpoint returns season standings.

API Endpoint

https://cache.sportsblaze.com/standings/{league}/{season}

Example URLs

MLB 2026 standings:

https://cache.sportsblaze.com/standings/mlb/2026

Example Response

{
"updated": "2026-06-25T04:21:46.037Z",
"league": {
"id": "mlb",
"name": "MLB",
"sport": "Baseball"
},
"season": {
"year": 2026,
"type": "Regular Season"
},
"teams": [
{
"id": "a48f3dae-405b-512e-97a2-851afd03f6e1",
"name": "New York Yankees",
"abbreviation": "NYY",
"division": {
"name": "AL East",
"rank": 1,
"leader": true,
"games_back": null
},
"league": {
"name": "American League",
"rank": 1,
"games_back": null
},
"wild_card": {},
"sport": {
"rank": 4,
"games_back": "3.0"
},
"record": {
"games": 79,
"wins": 48,
"losses": 31,
"pct": ".608"
}
},
{
"id": "be563c7c-f728-5cbf-94d4-6966df1b66a0",
"name": "Tampa Bay Rays",
"abbreviation": "TB",
"division": {
"name": "AL East",
"rank": 2,
"leader": false,
"games_back": "3.0"
},
"league": {
"name": "American League",
"rank": 2,
"games_back": "3.0"
},
"wild_card": {
"name": "American League",
"rank": 1,
"leader": true,
"games_back": "+6.5"
},
"sport": {
"rank": 5,
"games_back": "6.0"
},
"record": {
"games": 77,
"wins": 44,
"losses": 33,
"pct": ".571"
}
}
]
}