Endpoint Playground
Test Crawlora's ESPN scoreboard 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/scoreboard?sport=football&league=nfl&dates=20260910&week=1&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) |
| dates | string | No | 20260910 | Date or range as YYYYMMDD, YYYYMMDD-YYYYMMDD, or YYYY; defaults to the current scoreboard |
| week | integer | No | 1 | Week number (football leagues) |
| seasontype | integer | No | 2 | Season type |
{
"code": 200,
"msg": "OK",
"data": {
"sport": "football",
"league": "nfl",
"league_name": "National Football League",
"season": {
"year": 2026,
"type": 2,
"name": "Regular Season"
},
"count": 1,
"source_url": "https://site.api.espn.com/apis/site/v2/sports/football/nfl/scoreboard",
"fetched_at": "2026-09-10T20:05:00Z",
"games": [
{
"id": "401700000",
"date": "2026-09-10T20:00Z",
"short_name": "KC @ BUF",
"status": {
"state": "pre",
"detail": "Scheduled",
"completed": false
},
"venue": "Highmark Stadium",
"competitors": [
{
"team": {
"id": "2",
"abbreviation": "BUF",
"display_name": "Buffalo Bills"
},
"home_away": "home",
"score": "0"
},
{
"team": {
"id": "12",
"abbreviation": "KC",
"display_name": "Kansas City Chiefs"
},
"home_away": "away",
"score": "0"
}
]
}
]
}
}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 games (scores, schedule, status, and odds when available) for a sport and league 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), `3` (postseason), and `4` (offseason).
{
"code": 200,
"msg": "OK",
"data": {
"sport": "football",
"league": "nfl",
"league_name": "National Football League",
"season": {
"year": 2026,
"type": 2,
"name": "Regular Season"
},
"count": 1,
"source_url": "https://site.api.espn.com/apis/site/v2/sports/football/nfl/scoreboard",
"fetched_at": "2026-09-10T20:05:00Z",
"games": [
{
"id": "401700000",
"date": "2026-09-10T20:00Z",
"short_name": "KC @ BUF",
"status": {
"state": "pre",
"detail": "Scheduled",
"completed": false
},
"venue": "Highmark Stadium",
"competitors": [
{
"team": {
"id": "2",
"abbreviation": "BUF",
"display_name": "Buffalo Bills"
},
"home_away": "home",
"score": "0"
},
{
"team": {
"id": "12",
"abbreviation": "KC",
"display_name": "Kansas City Chiefs"
},
"home_away": "away",
"score": "0"
}
]
}
]
}
}curl "https://api.crawlora.net/api/v1/espn/scoreboard?sport=<sport>&league=<league>" \
-H "x-api-key: $CRAWLORA_API_KEY"