Yahoo Sports API endpoint
Use Crawlora's Yahoo Sports Motorsports Race API to extract supported public Yahoo Sports data as structured JSON. This page includes request parameters, cURL examples, response schema, error behavior, credit cost, and a Playground link for testing before integration.
/yahoo-sports/motorsports-raceReturns 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`. Developers commonly use this endpoint for data enrichment, monitoring, research dashboards, internal automation, and agent-native workflows that need repeatable structured public web data. Authentication uses the documented Crawlora headers, and usage is metered with the credit cost shown on this page.
Request parameters are generated from the active endpoint catalog. Required values must be sent before Crawlora can call the upstream public web data source.
| Parameter | Type | Required | Default | Description | Example |
|---|---|---|---|---|---|
| series | string | Yes | Motorsports series key Allowed values: f1, nascar | ||
| race | string | Yes | Yahoo Sports race slug from a motorsports-schedule response's race url | ||
| x-api-key (header) | string | Yes | API key required |
curl -X GET "https://api.crawlora.net/api/v1/yahoo-sports/motorsports-race?series=f1" \ -H "x-api-key: $CRAWLORA_API_KEY"
Send your scraping API key in the x-api-key header. Use the console API Keys page to rotate or select the active key.
Endpoint usage is metered in credits. The plan prices, included credits, limits, and overage rates below match the active backend billing configuration.
| Plan | Price | Included credits | Daily cap | Rate limit | Overage |
|---|---|---|---|---|---|
| Free | $0/mo | 2,000 | 500 daily credits | 5/min | No overage |
| Starter | $9/mo | 20,000 | 5,000 daily credits | 15/min | $0.75/1,000 overage credits when enabled |
| Growth | $29/mo | 100,000 | 25,000 daily credits | 45/min | $0.45/1,000 overage credits when enabled |
| Pro | $79/mo | 400,000 | No daily cap | 120/min | $0.30/1,000 overage credits |
| Business | $199/mo | 1,200,000 | No daily cap | 300/min | $0.20/1,000 overage credits |
| Enterprise | $499/mo | 5,000,000 | No daily cap | 1,000/min | $0.12/1,000 overage credits |
This endpoint is executed through Crawlora's managed scraping infrastructure.
Some targets require real browser execution because the data is loaded through JavaScript, dynamic rendering, or interaction-like browser behavior.
For supported endpoints, Crawlora can route requests through a managed browser cluster. This allows Crawlora to execute JavaScript, load dynamic content, apply browser-level request behavior, and normalize the rendered result into JSON.
You do not need to operate your own Playwright, Puppeteer, Chrome, proxy, queue, or retry infrastructure.
- `results` preserves finishing order (`place` ascending). - `race` echoes the same summary fields `motorsports-schedule` returns for this race (name, dates, status, venue, pole/race winner). - Invalid `series`/`race` values return an invalid-parameter error before upstream IO; an unknown race slug returns a 404. Example response: ```json { "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" } ] } } ```
Crawlora does not silently return bad data when the upstream page cannot be used.
| Status | Common failure case |
|---|---|
| 400 | Invalid input or missing required parameter |
| 429 | Plan or endpoint rate limit exceeded |
| 500 | Internal execution error |
| 502 | Upstream platform failed, returned unusable HTML, or served a challenge page that could not be resolved |
When possible, Crawlora returns structured error context so your integration can retry, back off, or inspect the request.
| Status | Description | Schema |
|---|---|---|
| 400 | Bad Request | #/definitions/app.Response |
| 404 | Not Found | #/definitions/app.Response |
| 429 | Too Many Requests | #/definitions/app.Response |
| 503 | Service Unavailable | #/definitions/app.Response |
{
"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"
}
]
}
}Request schema
No body schema
Response schema
#/definitions/yahoosports.motorsportsRaceResponseDoc
| Field | Type | Required | Enum | Bounds | Example | Description |
|---|---|---|---|---|---|---|
| code | integer | No | 200 | |||
| data | yahoosports.MotorsportsRaceResponse | No | ||||
| data.count | integer | No | 20 | |||
| data.fetched_at | string | No | ||||
| data.race | yahoosports.MotorsportsRace | No | ||||
| data.race.distance_mi | string | No | 306.12 | |||
| data.race.id | string | No | motorsports.g.2961 | |||
| data.race.laps | integer | No | 58 | |||
| data.race.laps_completed | integer | No | 58 | |||
| data.race.name | string | No | Australian Grand Prix | |||
| data.race.pole_winner | yahoosports.MotorsportsDriverRef | No | ||||
| data.race.pole_winner.id | string | No | motorsports.p.1490 | |||
| data.race.pole_winner.name | string | No | George Russell | |||
| data.race.pole_winner.url | string | No | ||||
| data.race.race_winner | yahoosports.MotorsportsDriverRef | No | ||||
| data.race.race_winner.id | string | No | motorsports.p.1490 | |||
| data.race.race_winner.name | string | No | George Russell | |||
| data.race.race_winner.url | string | No | ||||
| data.race.start_time | string | No | 2026-03-07T20:00:00-08:00 | |||
| data.race.status | string | No | FINAL | |||
| data.race.url | string | No | ||||
| data.race.venue | yahoosports.Venue | No | ||||
| data.race.venue.city | string | No | ||||
| data.race.venue.country | string | No | ||||
| data.race.venue.name | string | No | Acrisure Stadium | |||
| data.race.venue.state | string | No | ||||
| data.results | array | No | ||||
| data.results[].bonus_points | integer | No | ||||
| data.results[].car | yahoosports.MotorsportsCar | No | ||||
| data.results[].car.engine | string | No | Mercedes M08 EQ Power+ | |||
| data.results[].car.model | string | No | Mercedes F1 W08 EQ Power+ | |||
| data.results[].car.number | integer | No | 63 | |||
| data.results[].car.owner | string | No | Mercedes AMG Motorsport | |||
| data.results[].driver | yahoosports.MotorsportsDriverRef | No | ||||
| data.results[].driver.id | string | No | motorsports.p.1490 | |||
| data.results[].driver.name | string | No | George Russell | |||
| data.results[].driver.url | string | No | ||||
| data.results[].fastest_lap_time | string | No | 1:22.670 | |||
| data.results[].laps | integer | No | 58 | |||
| data.results[].laps_led | integer | No | 32 | |||
| data.results[].place | integer | No | 1 | |||
| data.results[].points | integer | No | 25 | |||
| data.results[].starting_pos | integer | No | 1 | |||
| data.results[].status | string | No | RUNNING | |||
| data.results[].time | string | No | 1:23:06.801 | |||
| data.season | integer | No | 2026 | |||
| data.series | string | No | f1 | |||
| data.source_url | string | No | ||||
| msg | string | No | OK |
Use environment variables for secrets and keep Crawlora API keys server-side.
curl -X GET "https://api.crawlora.net/api/v1/yahoo-sports/motorsports-race?series=f1" \
-H "x-api-key: $CRAWLORA_API_KEY"Crawlora is designed for responsible structured public web data workflows. Customers are responsible for using Crawlora in compliance with applicable laws, third-party rights, target-platform rules, and Crawlora terms.
Read Crawlora terms