get_driver_race_results
driverdb.comReturns recent individual race results for a driver from https://driverdb.com with event and session details, finish and grid positions, team, laps, points, and every non-empty result field.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_driver_race_results?
Returns recent individual race results for a driver from https://driverdb.com with event and session details, finish and grid positions, team, laps, points, and every non-empty result field. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass driver_identifier, limit, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"meta": {},
"results": [
{}
],
"returned": 0,
"source_url": "<string>",
"driver_identifier": "<string>",
"detailed_result_count": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/ea068582-6c1a-43a7-a3f2-617d0ea12526/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "ea068582-6c1a-43a7-a3f2-617d0ea12526",
"variables": {
"driver_identifier": "max-verstappen",
"limit": 8,
"timeout_seconds": 30
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="ea068582-6c1a-43a7-a3f2-617d0ea12526") — the "get_driver_race_results" function, which returns recent individual race results for a driver from https://driverdb.com with event and session details, finish and grid positions, team, laps, points, and every non-empty result field.. It takes driver_identifier (str), limit (int), timeout_seconds (int). Return the result as structured JSON.