Marketplace
No threads yet
Live

get_tournament_standings

fotball.no

Gets the league table for a selected tournament on https://fotball.no. Returns one row per team with position, team details, played matches, wins, draws, losses, goals, points, and other non-empty source row fields.

Parameters3
Runs10
Updated8d 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_tournament_standings?

Gets the league table for a selected tournament on https://fotball.no. Returns one row per team with position, team details, played matches, wins, draws, losses, goals, points, and other non-empty source row fields. 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

{
  "standings": [
    {
      "wins": 0,
      "draws": 0,
      "goals": "<string>",
      "losses": 0,
      "points": 0,
      "team_id": 0,
      "position": 0,
      "team_url": "<string>",
      "team_name": "<string>",
      "source_fields": {},
      "matches_played": 0,
      "goal_difference": 0
    }
  ],
  "source_url": "<string>",
  "tournament": "<string>",
  "tournament_id": 0,
  "standings_count": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/58dd1df0-d415-4106-aa58-781b27a66e0f/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "58dd1df0-d415-4106-aa58-781b27a66e0f",
    "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.

prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp).

Call run(function_id="58dd1df0-d415-4106-aa58-781b27a66e0f") — the "get_tournament_standings" function, which gets the league table for a selected tournament on https://fotball.no. Returns one row per team with position, team details, played matches, wins, draws, losses, goals, points, and other non-empty source row fields..

It takes tournament_slug (str), fiks_id (int), timeout_seconds (int). Return the result as structured JSON.