Catalog/sports-espn-standings

Data

ESPN league standings API

Conference/division standings for a league (NBA/NFL/MLB/NHL/EPL and more) with wins, losses, win pct, games behind, and point differential, normalized from the keyless (unofficial, best-effort) ESPN site API. Answers queries like 'NBA standings', 'NFL division standings', 'who leads the conference'.

Price$0.01per request
MethodPOST
Route/v1/data/sports-espn-standings
StatusLive
MIME typeapplication/json
Rate limit60/minute
Cache3600s public
sportsespnstandingsconferencedivisionnbanflbest-effort
API URLhttps://x402.hexl.dev/v1/data/sports-espn-standings
Integration docs
Example request
{
  "league": "nba"
}
Example response
{
  "league": "nba",
  "groups": [
    {
      "group": "Eastern Conference",
      "teams": [
        {
          "name": "Boston Celtics",
          "abbrev": "BOS",
          "wins": 64,
          "losses": 18,
          "winPercent": 0.78,
          "gamesBehind": 0,
          "pointDifferential": 11.3
        }
      ]
    }
  ]
}
Input schema
{
  "type": "object",
  "required": [
    "league"
  ],
  "properties": {
    "league": {
      "type": "string",
      "examples": [
        "nba",
        "nfl",
        "epl"
      ]
    }
  }
}
Output schema
{
  "type": "object",
  "additionalProperties": true
}