Live
get_driver_comparison
driverdb.comCompares two drivers from https://driverdb.com with complete profiles, career and rating histories, shared championships, and detailed championship statistics.
Parameters3
Runs5
Updated3d ago
Operational5 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 get_driver_comparison?
Compares two drivers from https://driverdb.com with complete profiles, career and rating histories, shared championships, and detailed championship statistics. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass driver1_slug, driver2_slug, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"driver1": {},
"driver2": {},
"source_url": "<string>",
"rating_history": {},
"career_comparison": {},
"common_championships": [
{}
],
"championship_comparisons": [
{}
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/d25f3d61-f6d6-40ed-8544-421a3726379b/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "d25f3d61-f6d6-40ed-8544-421a3726379b",
"variables": {
"driver1_slug": "max-verstappen",
"driver2_slug": "lando-norris",
"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.
prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="d25f3d61-f6d6-40ed-8544-421a3726379b") — the "get_driver_comparison" function, which compares two drivers from https://driverdb.com with complete profiles, career and rating histories, shared championships, and detailed championship statistics.. It takes driver1_slug (str), driver2_slug (str), timeout_seconds (int). Return the result as structured JSON.