list_football_data_geographic_areas
football-data.orgReturns the complete flat list of geographic areas and regions from https://football-data.org, including each area's country code, optional flag, and parent relationship.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is list_football_data_geographic_areas?
Returns the complete flat list of geographic areas and regions from https://football-data.org, including each area's country code, optional flag, and parent relationship. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — call it with no parameters and get the result back without maintaining a scraper.
Response
{
"areas": [
{
"id": 0,
"flag": "<string>",
"name": "<string>",
"parentArea": "<string>",
"countryCode": "<string>",
"parentAreaId": 0
}
],
"count": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/ea3fc5d9-8afe-4a02-9d73-88daf2a18cf3/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "ea3fc5d9-8afe-4a02-9d73-88daf2a18cf3",
"variables": {}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="ea3fc5d9-8afe-4a02-9d73-88daf2a18cf3") — the "list_football_data_geographic_areas" function, which returns the complete flat list of geographic areas and regions from https://football-data.org, including each area's country code, optional flag, and parent relationship.. It takes no parameters. Return the result as structured JSON.