Marketplace
No threads yet
Live

list_young_driver_rankings

driverdb.com

Returns top-rated active drivers by maximum age from https://driverdb.com with every non-empty ranking, profile, and career-statistics field exposed by the source.

Parameters2
Runs10
Updated4d ago
Degraded10 runs · 60% 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 list_young_driver_rankings?

Returns top-rated active drivers by maximum age from https://driverdb.com with every non-empty ranking, profile, and career-statistics 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, maximum_age and get the result back without maintaining a scraper.

Response

{
  "drivers": [
    {}
  ],
  "returned": 0,
  "sort_order": "<string>",
  "source_url": "<string>",
  "active_only": true,
  "maximum_age": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/c862eb0c-78f9-4c07-acbc-1473c2b32abb/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "c862eb0c-78f9-4c07-acbc-1473c2b32abb",
    "variables": {
        "limit": 25,
        "maximum_age": 25
    }
}'

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="c862eb0c-78f9-4c07-acbc-1473c2b32abb") — the "list_young_driver_rankings" function, which returns top-rated active drivers by maximum age from https://driverdb.com with every non-empty ranking, profile, and career-statistics field exposed by the source..

It takes limit (int), maximum_age (int). Return the result as structured JSON.