Endpoint Playground
Test Crawlora's Yahoo Sports Motorsports Race 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-race?series=f1&race=<race>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| series | string | Yes | f1 | Motorsports series key |
| race | string | Yes | Yahoo Sports race slug from a motorsports-schedule response's race url |
{
"code": 200,
"msg": "OK",
"data": {
"series": "f1",
"season": 2026,
"race": {
"id": "motorsports.g.2961",
"name": "Australian Grand Prix",
"status": "FINAL",
"laps": 58,
"venue": {
"name": "Albert Park Circuit",
"city": "Melbourne",
"country": "Australia"
}
},
"count": 22,
"source_url": "https://sports.yahoo.com/f1/races/australian-grand-prix-2026-2961/",
"fetched_at": "2026-08-14T15:05:00Z",
"results": [
{
"place": 1,
"starting_pos": 1,
"driver": {
"id": "motorsports.p.1490",
"name": "George Russell",
"url": "https://sports.yahoo.com/racing/drivers/George-Russell-1490/"
},
"car": {
"owner": "Mercedes AMG Motorsport",
"number": 63,
"engine": "Mercedes M08 EQ Power+",
"model": "Mercedes F1 W08 EQ Power+"
},
"laps": 58,
"laps_led": 32,
"points": 25,
"time": "1:23:06.801"
}
]
}
}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 race's full driver-by-driver results (finishing position, driver, car/team, points, laps, time), from Yahoo Sports' own server-rendered race page. The `series` enum accepts `f1` and `nascar`. Get the `race` slug from a motorsports-schedule response's race `url` (the last path segment), e.g. `australian-grand-prix-2026-2961`.
{
"code": 200,
"msg": "OK",
"data": {
"series": "f1",
"season": 2026,
"race": {
"id": "motorsports.g.2961",
"name": "Australian Grand Prix",
"status": "FINAL",
"laps": 58,
"venue": {
"name": "Albert Park Circuit",
"city": "Melbourne",
"country": "Australia"
}
},
"count": 22,
"source_url": "https://sports.yahoo.com/f1/races/australian-grand-prix-2026-2961/",
"fetched_at": "2026-08-14T15:05:00Z",
"results": [
{
"place": 1,
"starting_pos": 1,
"driver": {
"id": "motorsports.p.1490",
"name": "George Russell",
"url": "https://sports.yahoo.com/racing/drivers/George-Russell-1490/"
},
"car": {
"owner": "Mercedes AMG Motorsport",
"number": 63,
"engine": "Mercedes M08 EQ Power+",
"model": "Mercedes F1 W08 EQ Power+"
},
"laps": 58,
"laps_led": 32,
"points": 25,
"time": "1:23:06.801"
}
]
}
}curl "https://api.crawlora.net/api/v1/yahoo-sports/motorsports-race?series=<series>&race=<race>" \
-H "x-api-key: $CRAWLORA_API_KEY"