Endpoint Playground
Test Crawlora's ESPN standings API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/espn/standings?sport=football&league=nfl&season=2024&seasontype=2" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| sport | string | Yes | football | Sport key |
| league | string | Yes | nfl | League key (must be valid for the sport) |
| season | integer | No | 2024 | Four-digit season year; defaults to the current season |
| seasontype | integer | No | 2 | Season type |
{
"code": 200,
"msg": "OK",
"data": {
"sport": "football",
"league": "nfl",
"league_name": "National Football League",
"season": {
"year": 2024
},
"source_url": "https://site.api.espn.com/apis/v2/sports/football/nfl/standings?season=2024",
"fetched_at": "2026-07-06T00:00:00Z",
"groups": [
{
"name": "American Football Conference",
"abbreviation": "AFC",
"entries": [
{
"team": {
"id": "12",
"display_name": "Kansas City Chiefs"
},
"stats": {
"wins": "15",
"losses": "2"
}
}
]
}
]
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Returns league standings grouped by conference/division from ESPN's credential-free public JSON. The `sport` enum accepts `football`, `basketball`, `baseball`, `hockey`, and `soccer`. The `league` enum accepts `nfl`, `college-football`, `nba`, `wnba`, `mens-college-basketball`, `womens-college-basketball`, `mlb`, `nhl`, `eng.1`, `esp.1`, `ita.1`, `ger.1`, `fra.1`, `usa.1`, and `uefa.champions`; it must be valid for the chosen sport. The `seasontype` enum accepts `1` (preseason), `2` (regular season), and `3` (postseason).
{
"code": 200,
"msg": "OK",
"data": {
"sport": "football",
"league": "nfl",
"league_name": "National Football League",
"season": {
"year": 2024
},
"source_url": "https://site.api.espn.com/apis/v2/sports/football/nfl/standings?season=2024",
"fetched_at": "2026-07-06T00:00:00Z",
"groups": [
{
"name": "American Football Conference",
"abbreviation": "AFC",
"entries": [
{
"team": {
"id": "12",
"display_name": "Kansas City Chiefs"
},
"stats": {
"wins": "15",
"losses": "2"
}
}
]
}
]
}
}curl "https://api.crawlora.net/api/v1/espn/standings?sport=<sport>&league=<league>" \
-H "x-api-key: $CRAWLORA_API_KEY"