Endpoint Playground
Test Crawlora's Yahoo Sports game boxscore 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/game?league=nfl&game=<game>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| league | string | Yes | nfl | League key |
| game | string | Yes | Yahoo Sports game slug from a scoreboard/team-schedule response's game url |
{
"code": 200,
"msg": "OK",
"data": {
"league": "mlb",
"game": "cleveland-guardians-detroit-tigers-460811106",
"source_url": "https://sports.yahoo.com/mlb/cleveland-guardians-detroit-tigers-460811106/",
"fetched_at": "2026-08-13T20:05:00Z",
"id": "mlb.g.460811106",
"display_name": "Cleveland @ Detroit",
"status": "FINAL",
"status_display": "Final",
"away_team": {
"id": "mlb.t.5",
"name": "Cleveland Guardians",
"abbreviation": "CLE"
},
"home_team": {
"id": "mlb.t.6",
"name": "Detroit Tigers",
"abbreviation": "DET"
},
"away_score": 4,
"home_score": 6,
"winning_team_id": "mlb.t.6",
"line_score": [
{
"label": "Bottom 1st",
"away": 0,
"home": 0
},
{
"label": "Bottom 2nd",
"away": 0,
"home": 1
}
],
"team_stats": [
{
"team": {
"id": "mlb.t.5",
"abbreviation": "CLE"
},
"stats": [
{
"id": "RUNS",
"label": "Runs",
"value": "4"
},
{
"id": "HITS",
"label": "Hits",
"value": "8"
}
]
},
{
"team": {
"id": "mlb.t.6",
"abbreviation": "DET"
},
"stats": [
{
"id": "RUNS",
"label": "Runs",
"value": "6"
},
{
"id": "HITS",
"label": "Hits",
"value": "9"
}
]
}
]
}
}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 boxscore (matchup, line score by period, and team stat totals) from sports.yahoo.com's own server-rendered game 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`. Get the `game` slug from a scoreboard or team-schedule response's game `url` (the last path segment), e.g. `cleveland-guardians-detroit-tigers-460811106`.
{
"code": 200,
"msg": "OK",
"data": {
"league": "mlb",
"game": "cleveland-guardians-detroit-tigers-460811106",
"source_url": "https://sports.yahoo.com/mlb/cleveland-guardians-detroit-tigers-460811106/",
"fetched_at": "2026-08-13T20:05:00Z",
"id": "mlb.g.460811106",
"display_name": "Cleveland @ Detroit",
"status": "FINAL",
"status_display": "Final",
"away_team": {
"id": "mlb.t.5",
"name": "Cleveland Guardians",
"abbreviation": "CLE"
},
"home_team": {
"id": "mlb.t.6",
"name": "Detroit Tigers",
"abbreviation": "DET"
},
"away_score": 4,
"home_score": 6,
"winning_team_id": "mlb.t.6",
"line_score": [
{
"label": "Bottom 1st",
"away": 0,
"home": 0
},
{
"label": "Bottom 2nd",
"away": 0,
"home": 1
}
],
"team_stats": [
{
"team": {
"id": "mlb.t.5",
"abbreviation": "CLE"
},
"stats": [
{
"id": "RUNS",
"label": "Runs",
"value": "4"
},
{
"id": "HITS",
"label": "Hits",
"value": "8"
}
]
},
{
"team": {
"id": "mlb.t.6",
"abbreviation": "DET"
},
"stats": [
{
"id": "RUNS",
"label": "Runs",
"value": "6"
},
{
"id": "HITS",
"label": "Hits",
"value": "9"
}
]
}
]
}
}curl "https://api.crawlora.net/api/v1/yahoo-sports/game?league=<league>&game=<game>" \
-H "x-api-key: $CRAWLORA_API_KEY"