Marketplace
No threads yet
Live

list_football_competitions

football-data.org

Returns all available football competitions/leagues from https://football-data.org, including each competition's metadata and current season details. Optionally filters results by one or more geographic area IDs.

Parameters2
Runs12
Updated9d ago
Operational12 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_football_competitions?

Returns all available football competitions/leagues from https://football-data.org, including each competition's metadata and current season details. Optionally filters results by one or more geographic area IDs. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass area_ids, timeout_seconds and get the result back without maintaining a scraper.

Response

{
  "count": 0,
  "competitions": [
    {}
  ]
}

Call it

curl --location 'https://us-prod.notte.cc/functions/2cac4818-bffc-4802-b614-4ec3c6ec4b06/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "2cac4818-bffc-4802-b614-4ec3c6ec4b06",
    "variables": {
        "area_ids": null,
        "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="2cac4818-bffc-4802-b614-4ec3c6ec4b06") — the "list_football_competitions" function, which returns all available football competitions/leagues from https://football-data.org, including each competition's metadata and current season details. Optionally filters results by one or more geographic area IDs..

It takes area_ids (list[int] | str | None), timeout_seconds (int). Return the result as structured JSON.