Marketplace
No threads yet
Live

get_race_results

driverdb.com

Returns complete race-event metadata and every classified driver result field for a selected round and session from https://driverdb.com.

Parameters5
Runs6
Updated3d ago
Operational6 runs · 100% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is get_race_results?

Returns complete race-event metadata and every classified driver result field for a selected round and session from https://driverdb.com. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass championship_identifier, season_year, round_identifier, session_identifier, timeout_seconds and get the result back without maintaining a scraper.

Response

{
  "event": {},
  "source_url": "<string>",
  "season_year": 0,
  "results_metadata": {},
  "round_identifier": "<string>",
  "classified_results": [
    {}
  ],
  "session_identifier": "<string>",
  "championship_identifier": "<string>",
  "classified_driver_count": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/cea1b935-738a-44f7-adde-5d0767d77654/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "cea1b935-738a-44f7-adde-5d0767d77654",
    "variables": {
        "championship_identifier": "formula-1",
        "season_year": 2024,
        "round_identifier": "round-1",
        "session_identifier": "race-1",
        "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="cea1b935-738a-44f7-adde-5d0767d77654") — the "get_race_results" function, which returns complete race-event metadata and every classified driver result field for a selected round and session from https://driverdb.com..

It takes championship_identifier (str), season_year (int), round_identifier (str), session_identifier (str), timeout_seconds (int). Return the result as structured JSON.