Marketplace
No threads yet
Live

get_race_calendar

driverdb.com

Returns a championship season race calendar from https://driverdb.com with every round, track, date, official event name, and non-empty source field.

Parameters3
Runs8
Updated4d ago
Operational8 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_calendar?

Returns a championship season race calendar from https://driverdb.com with every round, track, date, official event name, and non-empty source field. 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, timeout_seconds and get the result back without maintaining a scraper.

Response

{
  "rounds": [
    {}
  ],
  "returned": 0,
  "source_url": "<string>",
  "season_year": 0,
  "calendar_year": 0,
  "championship_identifier": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/05f08bee-cafc-4cf4-8585-b8c753f68287/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "05f08bee-cafc-4cf4-8585-b8c753f68287",
    "variables": {
        "championship_identifier": "formula-1",
        "season_year": 2024,
        "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="05f08bee-cafc-4cf4-8585-b8c753f68287") — the "get_race_calendar" function, which returns a championship season race calendar from https://driverdb.com with every round, track, date, official event name, and non-empty source field..

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