Live
list_championships
driverdb.comReturns up to 100 motorsport championships from https://driverdb.com with identifiers and every non-empty record field exposed by the site.
Parameters6
Runs9
Updated3d ago
Degraded9 runs · 77.7% 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_championships?
Returns up to 100 motorsport championships from https://driverdb.com with identifiers and every non-empty record field exposed by the site. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass limit, offset, sort_by, include_classes, include_special_events, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"limit": 0,
"offset": 0,
"sort_by": "<string>",
"returned": 0,
"source_url": "<string>",
"championships": [
{}
],
"total_available": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/4f4266eb-b054-4ac6-966e-173f60f9053c/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "4f4266eb-b054-4ac6-966e-173f60f9053c",
"variables": {
"limit": 100,
"offset": 0,
"sort_by": "asc",
"include_classes": false,
"include_special_events": true,
"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="4f4266eb-b054-4ac6-966e-173f60f9053c") — the "list_championships" function, which returns up to 100 motorsport championships from https://driverdb.com with identifiers and every non-empty record field exposed by the site.. It takes limit (int), offset (int), sort_by (str), include_classes (bool), include_special_events (bool), timeout_seconds (int). Return the result as structured JSON.