Marketplace
No threads yet
Live

get_match_details

fotball.no

Returns detailed match records from https://fotball.no with teams, score, venue, competition facts, squads, referees and events.

Parameters2
Runs7
Updated4d ago
Operational7 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_match_details?

Returns detailed match records from https://fotball.no with teams, score, venue, competition facts, squads, referees and events. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass match_id, timeout_seconds and get the result back without maintaining a scraper.

Response

{
  "date": "<string>",
  "score": "<string>",
  "title": "<string>",
  "venue": "<string>",
  "events": [
    {
      "minute": 0,
      "details": {},
      "event_id": 0,
      "team_name": "<string>",
      "team_side": "<string>",
      "event_type": "<string>"
    }
  ],
  "squads": [
    {
      "starters": [
        {
          "url": "<string>",
          "name": "<string>",
          "number": 0,
          "captain": true,
          "person_id": 0
        }
      ],
      "team_name": "<string>",
      "substitutes": [
        {
          "url": "<string>",
          "name": "<string>",
          "number": 0,
          "captain": true,
          "person_id": 0
        }
      ]
    }
  ],
  "details": {},
  "weekday": "<string>",
  "match_id": 0,
  "referees": [
    {
      "url": "<string>",
      "club": "<string>",
      "name": "<string>",
      "role": "<string>",
      "person_id": 0
    }
  ],
  "away_team": {
    "url": "<string>",
    "name": "<string>",
    "team_id": 0,
    "logo_url": "<string>"
  },
  "home_team": {
    "url": "<string>",
    "name": "<string>",
    "team_id": 0,
    "logo_url": "<string>"
  },
  "source_url": "<string>",
  "kickoff_time": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/9458245b-0b45-4a38-bc55-451f8b83fe20/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "9458245b-0b45-4a38-bc55-451f8b83fe20",
    "variables": {
        "match_id": "DEFAULT_MATCH_ID",
        "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="9458245b-0b45-4a38-bc55-451f8b83fe20") — the "get_match_details" function, which returns detailed match records from https://fotball.no with teams, score, venue, competition facts, squads, referees and events..

It takes match_id (int), timeout_seconds (int). Return the result as structured JSON.