Catalog/sports-mlb-standings

Data

MLB division standings API

MLB regular-season division standings by league (AL/NL) and season with wins, losses, win pct, games back, ranks, streak, and runs, normalized from the keyless MLB Stats API. Answers queries like 'AL East standings 2023', 'who leads the NL West', 'Yankees record'.

Price$0.01per request
MethodPOST
Route/v1/data/sports-mlb-standings
StatusLive
MIME typeapplication/json
Rate limit60/minute
Cache3600s public
sportsmlbbaseballstandingsdivisionleaguestatsapiseason
API URLhttps://x402.hexl.dev/v1/data/sports-mlb-standings
Integration docs
Example request
{
  "league": "al",
  "season": 2023
}
Example response
{
  "league": "al",
  "season": 2023,
  "divisions": [
    {
      "divisionId": 201,
      "teams": [
        {
          "teamId": 110,
          "name": "Baltimore Orioles",
          "wins": 101,
          "losses": 61,
          "winPct": ".623",
          "gamesBack": "-",
          "divisionRank": 1,
          "leagueRank": 1,
          "streak": "W1",
          "runsScored": 807,
          "runsAllowed": 666
        }
      ]
    }
  ]
}
Input schema
{
  "type": "object",
  "required": [
    "league"
  ],
  "properties": {
    "league": {
      "type": "string",
      "examples": [
        "al",
        "nl"
      ]
    },
    "season": {
      "type": [
        "number",
        "string"
      ],
      "examples": [
        2023
      ]
    }
  }
}
Output schema
{
  "type": "object",
  "additionalProperties": true
}