Marketplace
No threads yet
Live

get_top_rated_drivers

driverdb.com

Retrieves the DriverDB top-rated driver ranking from https://driverdb.com using its Sharp ELO-style ratings. Returns up to 100 drivers in descending rating order with every non-empty profile and career-statistics field exposed by the source.

Parameters1
Runs15
Updated10d ago
Degraded15 runs · 73.3% 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_top_rated_drivers?

Retrieves the DriverDB top-rated driver ranking from https://driverdb.com using its Sharp ELO-style ratings. Returns up to 100 drivers in descending rating order with every non-empty 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 and get the result back without maintaining a scraper.

Response

{
  "drivers": [
    {}
  ],
  "returned": 0,
  "sort_order": "<string>",
  "source_url": "<string>",
  "rating_system": "<string>",
  "total_available": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/63faae83-fc9c-4209-a231-5364b3cbac5b/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "63faae83-fc9c-4209-a231-5364b3cbac5b",
    "variables": {
        "limit": 100
    }
}'

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="63faae83-fc9c-4209-a231-5364b3cbac5b") — the "get_top_rated_drivers" function, which retrieves the DriverDB top-rated driver ranking from https://driverdb.com using its Sharp ELO-style ratings. Returns up to 100 drivers in descending rating order with every non-empty profile and career-statistics field exposed by the source..

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