get_driver_standings
driverdb.comReturns the full driver classification for a championship season from https://driverdb.com, including positions, points, teams, driver details, and every non-empty standings field.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_driver_standings?
Returns the full driver classification for a championship season from https://driverdb.com, including positions, points, teams, driver details, and every non-empty standings 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
{
"returned": 0,
"season_id": 0,
"standings": [
{}
],
"source_url": "<string>",
"season_year": 0,
"championship_name": "<string>",
"classified_drivers": 0,
"championship_identifier": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/3eae58e1-4a2c-4bbe-a7d9-cbdbe5185513/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "3eae58e1-4a2c-4bbe-a7d9-cbdbe5185513",
"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.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="3eae58e1-4a2c-4bbe-a7d9-cbdbe5185513") — the "get_driver_standings" function, which returns the full driver classification for a championship season from https://driverdb.com, including positions, points, teams, driver details, and every non-empty standings field.. It takes championship_identifier (str), season_year (int), timeout_seconds (int). Return the result as structured JSON.