Live
list_completed_race_results
driverdb.comReturns completed championship rounds from https://driverdb.com with podiums, pole sitters, fastest laps, tracks, dates, and every non-empty source field.
Parameters3
Runs8
Updated3d ago
Operational8 runs · 100% succeeded
30 days ago90 days agoranfailednot checkedtoday
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is list_completed_race_results?
Returns completed championship rounds from https://driverdb.com with podiums, pole sitters, fastest laps, tracks, dates, and every non-empty source field. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass championship_identifier, season_year, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"returned": 0,
"source_url": "<string>",
"season_year": 0,
"calendar_year": 0,
"completed_rounds": [
{}
],
"championship_identifier": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/6f599ce5-2606-4976-82e7-9930751d112b/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "6f599ce5-2606-4976-82e7-9930751d112b",
"variables": {
"championship_identifier": "formula-1",
"season_year": 2024,
"timeout_seconds": 20
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="6f599ce5-2606-4976-82e7-9930751d112b") — the "list_completed_race_results" function, which returns completed championship rounds from https://driverdb.com with podiums, pole sitters, fastest laps, tracks, dates, and every non-empty source field.. It takes championship_identifier (str), season_year (int), timeout_seconds (int). Return the result as structured JSON.