list_tracks
driverdb.comReturns up to 100 tracks from https://driverdb.com with countries, identifiers, descriptions, media, opening years, and every non-empty circuit layout field exposed by the source.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is list_tracks?
Returns up to 100 tracks from https://driverdb.com with countries, identifiers, descriptions, media, opening years, and every non-empty circuit layout field exposed by the source. 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, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"limit": 0,
"offset": 0,
"tracks": [
{}
],
"sort_by": "<string>",
"returned": 0,
"total_available": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/5f47f837-8d39-4525-a807-1aac6bd368d3/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "5f47f837-8d39-4525-a807-1aac6bd368d3",
"variables": {
"limit": 100,
"offset": 0,
"sort_by": "popularity",
"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="5f47f837-8d39-4525-a807-1aac6bd368d3") — the "list_tracks" function, which returns up to 100 tracks from https://driverdb.com with countries, identifiers, descriptions, media, opening years, and every non-empty circuit layout field exposed by the source.. It takes limit (int), offset (int), sort_by (str), timeout_seconds (int). Return the result as structured JSON.