Marketplace
No threads yet
Live

list_teams

driverdb.com

Returns up to 100 motorsport teams from https://driverdb.com with names, countries, identifiers, and every non-empty team field exposed by the source.

Parameters5
Runs31
Updated3d ago
Operational31 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 list_teams?

Returns up to 100 motorsport teams from https://driverdb.com with names, countries, identifiers, and every non-empty team 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, offset, sort_by, only_with_seasons, timeout_seconds and get the result back without maintaining a scraper.

Response

{
  "limit": 0,
  "teams": [
    {}
  ],
  "offset": 0,
  "sort_by": "<string>",
  "returned": 0,
  "source_url": "<string>",
  "total_available": 0,
  "only_with_seasons": true
}

Call it

curl --location 'https://us-prod.notte.cc/functions/146ac664-30b8-4fce-8eb7-76ddf5d2b1f3/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "146ac664-30b8-4fce-8eb7-76ddf5d2b1f3",
    "variables": {
        "limit": 100,
        "offset": 0,
        "sort_by": "asc",
        "only_with_seasons": true,
        "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="146ac664-30b8-4fce-8eb7-76ddf5d2b1f3") — the "list_teams" function, which returns up to 100 motorsport teams from https://driverdb.com with names, countries, identifiers, and every non-empty team field exposed by the source..

It takes limit (int), offset (int), sort_by (str), only_with_seasons (bool), timeout_seconds (int). Return the result as structured JSON.