Live
get_track_details
driverdb.comReturns one circuit profile from https://driverdb.com with official identity, country, media, description, opening year, and every non-empty track-layout field.
Parameters2
Runs6
Updated4d ago
Operational6 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_track_details?
Returns one circuit profile from https://driverdb.com with official identity, country, media, description, opening year, and every non-empty track-layout field. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass track_slug, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"track": {}
}Call it
curl --location 'https://us-prod.notte.cc/functions/ce6e9660-491c-469a-9b0e-09f2d8d961a9/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "ce6e9660-491c-469a-9b0e-09f2d8d961a9",
"variables": {
"track_slug": "spa-francorchamps",
"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="ce6e9660-491c-469a-9b0e-09f2d8d961a9") — the "get_track_details" function, which returns one circuit profile from https://driverdb.com with official identity, country, media, description, opening year, and every non-empty track-layout field.. It takes track_slug (str), timeout_seconds (int). Return the result as structured JSON.