Marketplace
No threads yet
Live

get_matches_by_date

fotball.no

Gets every match scheduled on a selected date across national and regional competitions from https://fotball.no. Returns teams, kickoff time, result, venue, tournament, match links, report, game format, and district details.

Parameters1
Runs11
Updated10d ago
Degraded11 runs · 72.7% 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_matches_by_date?

Gets every match scheduled on a selected date across national and regional competitions from https://fotball.no. Returns teams, kickoff time, result, venue, tournament, match links, report, game format, and district details. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass date and get the result back without maintaining a scraper.

Response

{
  "date": "<string>",
  "count": 0,
  "matches": [
    {}
  ],
  "districts_searched": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/d09ab98c-2c15-4eba-9bf2-8263edb13b16/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "d09ab98c-2c15-4eba-9bf2-8263edb13b16",
    "variables": {
        "date": ""
    }
}'

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="d09ab98c-2c15-4eba-9bf2-8263edb13b16") — the "get_matches_by_date" function, which gets every match scheduled on a selected date across national and regional competitions from https://fotball.no. Returns teams, kickoff time, result, venue, tournament, match links, report, game format, and district details..

It takes date (str). Return the result as structured JSON.