get_tournament_matches
fotball.noGets full tournament fixture lists from https://fotball.no, including played and upcoming matches. Returns date, kickoff time, teams, result, venue, match IDs, and all non-empty source row fields for each fixture.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_tournament_matches?
Gets full tournament fixture lists from https://fotball.no, including played and upcoming matches. Returns date, kickoff time, teams, result, venue, match IDs, and all non-empty source row fields for each fixture. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass tournament_slug, fiks_id, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"fixtures": [
{
"day": "<string>",
"date": "<string>",
"time": "<string>",
"round": "<string>",
"venue": "<string>",
"result": "<string>",
"match_id": 0,
"away_team": "<string>",
"home_team": "<string>",
"match_url": "<string>",
"match_number": "<string>",
"source_fields": {}
}
],
"source_url": "<string>",
"tournament": "<string>",
"tournament_id": 0,
"fixtures_count": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/9820da4b-6c2a-48dd-9e74-5c334a83fbfe/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "9820da4b-6c2a-48dd-9e74-5c334a83fbfe",
"variables": {
"tournament_slug": "eliteserien",
"fiks_id": 206092,
"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.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="9820da4b-6c2a-48dd-9e74-5c334a83fbfe") — the "get_tournament_matches" function, which gets full tournament fixture lists from https://fotball.no, including played and upcoming matches. Returns date, kickoff time, teams, result, venue, match IDs, and all non-empty source row fields for each fixture.. It takes tournament_slug (str), fiks_id (int), timeout_seconds (int). Return the result as structured JSON.