Endpoint Playground
Test Crawlora's Yahoo Sports 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/yahoo-sports/scoreboard?league=nfl" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| league | string | Yes | nfl | League key |
| date | string | No | Date as YYYY-MM-DD; defaults to Yahoo Sports' current scoreboard date |
{
"code": 200,
"msg": "OK",
"data": {
"league": "nfl",
"date": "2026-08-13",
"count": 1,
"source_url": "https://sports.yahoo.com/nfl/scoreboard/?date=2026-08-13",
"fetched_at": "2026-08-13T20:05:00Z",
"games": [
{
"id": "nfl.g.20260813023",
"slug": "green-bay-packers-pittsburgh-steelers-20260813023",
"display_name": "Green Bay @ Pittsburgh",
"status": "PREGAME",
"status_display": "7:00 PM",
"start_time": "2026-08-13T16:00:00-07:00",
"venue": {
"name": "Acrisure Stadium",
"city": "Pittsburgh",
"state": "PA",
"country": "USA"
},
"away_team": {
"id": "nfl.t.9",
"name": "Green Bay Packers",
"short_name": "Green Bay",
"abbreviation": "GB"
},
"home_team": {
"id": "nfl.t.23",
"name": "Pittsburgh Steelers",
"short_name": "Pittsburgh",
"abbreviation": "PIT"
},
"broadcasts": [
{
"name": "NFL Network",
"abbr": "NFLN"
}
]
}
]
}
}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 (teams, score, status, venue, and broadcast info) for a league on a date, from sports.yahoo.com's own server-rendered scoreboard 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",
"date": "2026-08-13",
"count": 1,
"source_url": "https://sports.yahoo.com/nfl/scoreboard/?date=2026-08-13",
"fetched_at": "2026-08-13T20:05:00Z",
"games": [
{
"id": "nfl.g.20260813023",
"slug": "green-bay-packers-pittsburgh-steelers-20260813023",
"display_name": "Green Bay @ Pittsburgh",
"status": "PREGAME",
"status_display": "7:00 PM",
"start_time": "2026-08-13T16:00:00-07:00",
"venue": {
"name": "Acrisure Stadium",
"city": "Pittsburgh",
"state": "PA",
"country": "USA"
},
"away_team": {
"id": "nfl.t.9",
"name": "Green Bay Packers",
"short_name": "Green Bay",
"abbreviation": "GB"
},
"home_team": {
"id": "nfl.t.23",
"name": "Pittsburgh Steelers",
"short_name": "Pittsburgh",
"abbreviation": "PIT"
},
"broadcasts": [
{
"name": "NFL Network",
"abbr": "NFLN"
}
]
}
]
}
}curl "https://api.crawlora.net/api/v1/yahoo-sports/scoreboard?league=<league>" \
-H "x-api-key: $CRAWLORA_API_KEY"