Endpoint Playground
Test Crawlora's Yahoo Sports Motorsports Schedule 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/motorsports-schedule?series=f1" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| series | string | Yes | f1 | Motorsports series key |
| season | integer | No | 4-digit season year; defaults to the current season |
{
"code": 200,
"msg": "OK",
"data": {
"series": "f1",
"season": 2026,
"count": 24,
"source_url": "https://sports.yahoo.com/f1/schedule/",
"fetched_at": "2026-08-14T15:00:00Z",
"races": [
{
"id": "motorsports.g.2961",
"name": "Australian Grand Prix",
"start_time": "2026-03-07T20:00:00-08:00",
"status": "FINAL",
"laps": 58,
"laps_completed": 58,
"distance_mi": "306.12",
"venue": {
"name": "Albert Park Circuit",
"city": "Melbourne",
"country": "Australia"
},
"pole_winner": {
"id": "motorsports.p.1490",
"name": "George Russell",
"url": "https://sports.yahoo.com/racing/drivers/George-Russell-1490/"
},
"race_winner": {
"id": "motorsports.p.1490",
"name": "George Russell",
"url": "https://sports.yahoo.com/racing/drivers/George-Russell-1490/"
},
"url": "https://sports.yahoo.com/f1/races/australian-grand-prix-2026-2961/"
}
]
}
}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 a series' season race list (name, date, status, laps, distance, pole/race winner, venue), from Yahoo Sports' own server-rendered motorsports schedule page. The `series` enum accepts `f1` and `nascar`.
{
"code": 200,
"msg": "OK",
"data": {
"series": "f1",
"season": 2026,
"count": 24,
"source_url": "https://sports.yahoo.com/f1/schedule/",
"fetched_at": "2026-08-14T15:00:00Z",
"races": [
{
"id": "motorsports.g.2961",
"name": "Australian Grand Prix",
"start_time": "2026-03-07T20:00:00-08:00",
"status": "FINAL",
"laps": 58,
"laps_completed": 58,
"distance_mi": "306.12",
"venue": {
"name": "Albert Park Circuit",
"city": "Melbourne",
"country": "Australia"
},
"pole_winner": {
"id": "motorsports.p.1490",
"name": "George Russell",
"url": "https://sports.yahoo.com/racing/drivers/George-Russell-1490/"
},
"race_winner": {
"id": "motorsports.p.1490",
"name": "George Russell",
"url": "https://sports.yahoo.com/racing/drivers/George-Russell-1490/"
},
"url": "https://sports.yahoo.com/f1/races/australian-grand-prix-2026-2961/"
}
]
}
}curl "https://api.crawlora.net/api/v1/yahoo-sports/motorsports-schedule?series=<series>" \
-H "x-api-key: $CRAWLORA_API_KEY"