Endpoint Playground
Test Crawlora's ESPN league news 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/news?sport=basketball&league=nba" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| sport | string | Yes | basketball | Sport key |
| league | string | Yes | nba | League key (must be valid for the sport) |
{
"code": 200,
"msg": "OK",
"data": {
"sport": "basketball",
"league": "nba",
"count": 1,
"source_url": "https://site.api.espn.com/apis/site/v2/sports/basketball/nba/news",
"fetched_at": "2026-07-06T00:00:00Z",
"articles": [
{
"headline": "Recap: Home team wins",
"description": "A summary of the game.",
"published": "2026-07-05T04:00:00Z",
"type": "Recap",
"link": "https://www.espn.com/nba/story/_/id/000000/recap"
}
]
}
}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 recent news articles (headline, description, link) for a 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.
{
"code": 200,
"msg": "OK",
"data": {
"sport": "basketball",
"league": "nba",
"count": 1,
"source_url": "https://site.api.espn.com/apis/site/v2/sports/basketball/nba/news",
"fetched_at": "2026-07-06T00:00:00Z",
"articles": [
{
"headline": "Recap: Home team wins",
"description": "A summary of the game.",
"published": "2026-07-05T04:00:00Z",
"type": "Recap",
"link": "https://www.espn.com/nba/story/_/id/000000/recap"
}
]
}
}curl "https://api.crawlora.net/api/v1/espn/news?sport=<sport>&league=<league>" \
-H "x-api-key: $CRAWLORA_API_KEY"