Endpoint Playground
Test Crawlora's ESPN game summary 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/game-summary?sport=baseball&league=mlb&event=401816033" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| sport | string | Yes | baseball | Sport key |
| league | string | Yes | mlb | League key (must be valid for the sport) |
| event | string | Yes | 401816033 | Numeric ESPN event (game) id |
{
"code": 200,
"msg": "OK",
"data": {
"sport": "baseball",
"league": "mlb",
"event": "401816033",
"source_url": "https://site.api.espn.com/apis/site/v2/sports/baseball/mlb/summary?event=401816033",
"fetched_at": "2026-07-06T00:00:00Z",
"game": {
"id": "401816033",
"status": {
"state": "post",
"detail": "Final",
"completed": true
},
"competitors": [
{
"team": {
"id": "15",
"display_name": "Braves"
},
"home_away": "home",
"score": "9",
"winner": true
},
{
"team": {
"id": "22",
"display_name": "Marlins"
},
"home_away": "away",
"score": "3"
}
]
},
"odds": [
{
"provider": "ESPN BET",
"details": "ATL -1.5",
"over_under": 8.5,
"spread": -1.5
}
],
"boxscore_teams": [
{
"team": {
"id": "15",
"display_name": "Braves"
},
"home_away": "home",
"stats": {}
}
]
}
}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 one game's matchup, betting odds, and boxscore stat totals 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. Get an `event` id from the scoreboard endpoint.
{
"code": 200,
"msg": "OK",
"data": {
"sport": "baseball",
"league": "mlb",
"event": "401816033",
"source_url": "https://site.api.espn.com/apis/site/v2/sports/baseball/mlb/summary?event=401816033",
"fetched_at": "2026-07-06T00:00:00Z",
"game": {
"id": "401816033",
"status": {
"state": "post",
"detail": "Final",
"completed": true
},
"competitors": [
{
"team": {
"id": "15",
"display_name": "Braves"
},
"home_away": "home",
"score": "9",
"winner": true
},
{
"team": {
"id": "22",
"display_name": "Marlins"
},
"home_away": "away",
"score": "3"
}
]
},
"odds": [
{
"provider": "ESPN BET",
"details": "ATL -1.5",
"over_under": 8.5,
"spread": -1.5
}
],
"boxscore_teams": [
{
"team": {
"id": "15",
"display_name": "Braves"
},
"home_away": "home",
"stats": {}
}
]
}
}curl "https://api.crawlora.net/api/v1/espn/game-summary?sport=<sport>&league=<league>&event=<event>" \
-H "x-api-key: $CRAWLORA_API_KEY"