Marketplace
No threads yet
Live

list_latest_championship_news

driverdb.com

Returns recent external motorsport article summaries for a selected championship from https://driverdb.com, including headlines, introductions, sources, dates, links, and all non-empty source fields.

Parameters3
Runs6
Updated3d ago
Operational6 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_latest_championship_news?

Returns recent external motorsport article summaries for a selected championship from https://driverdb.com, including headlines, introductions, sources, dates, links, 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 championship_id, limit, timeout_seconds and get the result back without maintaining a scraper.

Response

{
  "articles": [
    {}
  ]
}

Call it

curl --location 'https://us-prod.notte.cc/functions/bf974a63-c42f-4a8e-b7cb-3e3795e4c7a3/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "bf974a63-c42f-4a8e-b7cb-3e3795e4c7a3",
    "variables": {
        "championship_id": 1,
        "limit": 10,
        "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="bf974a63-c42f-4a8e-b7cb-3e3795e4c7a3") — the "list_latest_championship_news" function, which returns recent external motorsport article summaries for a selected championship from https://driverdb.com, including headlines, introductions, sources, dates, links, and all non-empty source fields..

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