Endpoint Playground
Test Crawlora's Yahoo Sports 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/yahoo-sports/news?league=nfl" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| league | string | Yes | nfl | League key |
{
"code": 200,
"msg": "OK",
"data": {
"league": "nfl",
"count": 50,
"source_url": "https://sports.yahoo.com/nfl/news/",
"fetched_at": "2026-08-13T20:05:00Z",
"articles": [
{
"title": "NFL news, live updates: Joe Burrow, Ja'Marr Chase expected to play in Thursday's preseason game",
"summary": "Follow along with the latest NFL news and updates as the preseason plays out.",
"author": "Yahoo Sports Staff",
"category": "Sports",
"published": "2026-08-13T15:25:12Z",
"url": "https://sports.yahoo.com/nfl/live/nfl-news-preseason-schedule-whos-playing-live-updates-today-152512676.html"
}
]
}
}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 (title, summary, author, published time, and link) for a league from sports.yahoo.com's own server-rendered news page. The `league` enum accepts `nfl`, `nba`, `wnba`, `mlb`, `nhl`, `college-football`, `college-basketball`, `college-womens-basketball`, `mls`, `premier-league`, `la-liga`, `serie-a`, `bundesliga`, `ligue-1`, `nwsl`, `ligamx-apertura`, `ligamx-clausura`, `copa-america`, `club-world-cup`, `world-cup`, `concacaf-champions-cup`, `concacaf-gold-cup`, `concacaf-league`, and `champions-league`.
{
"code": 200,
"msg": "OK",
"data": {
"league": "nfl",
"count": 50,
"source_url": "https://sports.yahoo.com/nfl/news/",
"fetched_at": "2026-08-13T20:05:00Z",
"articles": [
{
"title": "NFL news, live updates: Joe Burrow, Ja'Marr Chase expected to play in Thursday's preseason game",
"summary": "Follow along with the latest NFL news and updates as the preseason plays out.",
"author": "Yahoo Sports Staff",
"category": "Sports",
"published": "2026-08-13T15:25:12Z",
"url": "https://sports.yahoo.com/nfl/live/nfl-news-preseason-schedule-whos-playing-live-updates-today-152512676.html"
}
]
}
}curl "https://api.crawlora.net/api/v1/yahoo-sports/news?league=<league>" \
-H "x-api-key: $CRAWLORA_API_KEY"