Marketplace
No threads yet
Live

get_geographic_area_details

football-data.org

Returns detailed information for one geographic area from https://football-data.org, including its parent relationship and any child areas. Defaults to Europe (area ID 2077).

Parameters1
Runs10
Updated10d ago
Operational10 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_geographic_area_details?

Returns detailed information for one geographic area from https://football-data.org, including its parent relationship and any child areas. Defaults to Europe (area ID 2077). It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass area_id and get the result back without maintaining a scraper.

Response

{
  "id": 0,
  "code": "<string>",
  "flag": "<string>",
  "name": "<string>",
  "childAreas": [
    {
      "id": 0,
      "flag": "<string>",
      "name": "<string>",
      "parentArea": "<string>",
      "countryCode": "<string>",
      "parentAreaId": 0
    }
  ],
  "parentArea": "<string>",
  "parentAreaId": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/86890f22-db50-445b-9cf9-d52c6914fd68/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "86890f22-db50-445b-9cf9-d52c6914fd68",
    "variables": {
        "area_id": 2077
    }
}'

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="86890f22-db50-445b-9cf9-d52c6914fd68") — the "get_geographic_area_details" function, which returns detailed information for one geographic area from https://football-data.org, including its parent relationship and any child areas. Defaults to Europe (area ID 2077)..

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