Marketplace
No threads yet
Live

get_team_profile

driverdb.com

Returns the latest primary-championship team profile from https://driverdb.com with drivers, season statistics, leadership, headquarters, colours, and all non-empty source fields.

Parameters2
Runs5
Updated3d ago
Operational5 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_team_profile?

Returns the latest primary-championship team profile from https://driverdb.com with drivers, season statistics, leadership, headquarters, colours, and all non-empty source fields. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass team_identifier, timeout_seconds and get the result back without maintaining a scraper.

Response

{
  "team": {},
  "season": {}
}

Call it

curl --location 'https://us-prod.notte.cc/functions/b7a6b469-5b7b-44fd-94d9-6cc2d5aa17eb/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "b7a6b469-5b7b-44fd-94d9-6cc2d5aa17eb",
    "variables": {
        "team_identifier": "red-bull",
        "timeout_seconds": 30
    }
}'

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="b7a6b469-5b7b-44fd-94d9-6cc2d5aa17eb") — the "get_team_profile" function, which returns the latest primary-championship team profile from https://driverdb.com with drivers, season statistics, leadership, headquarters, colours, and all non-empty source fields..

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