get_football_competition_details
football-data.orgReturns details for a single competition from https://football-data.org using either a numeric ID or a competition code. Includes competition metadata, current season information, and historical season records when available from the API.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_football_competition_details?
Returns details for a single competition from https://football-data.org using either a numeric ID or a competition code. Includes competition metadata, current season information, and historical season records when available from the API. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass competition, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"metadata": {},
"current_season": {},
"historical_seasons": [
{}
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/96e67e0a-7319-48cc-952e-087963a615eb/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "96e67e0a-7319-48cc-952e-087963a615eb",
"variables": {
"competition": "PL",
"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.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="96e67e0a-7319-48cc-952e-087963a615eb") — the "get_football_competition_details" function, which returns details for a single competition from https://football-data.org using either a numeric ID or a competition code. Includes competition metadata, current season information, and historical season records when available from the API.. It takes competition (str | int), timeout_seconds (int). Return the result as structured JSON.