Marketplace
No threads yet
Live

get_daily_fixtures

flashscore.com

Retrieves every match or event for a selected sport and day from https://flashscore.com. Returns competitions, participant IDs, scores, statuses, period data, and match IDs for follow-up lookups.

Parameters2
Runs21
Updated10d ago

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is get_daily_fixtures?

Retrieves every match or event for a selected sport and day from https://flashscore.com. Returns competitions, participant IDs, scores, statuses, period data, and match IDs for follow-up lookups. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass sport, day_offset and get the result back without maintaining a scraper.

Response

{
  "date": "<string>",
  "sport": "<string>",
  "source": "<string>",
  "matches": [
    {}
  ],
  "sport_id": 0,
  "timezone": "<string>",
  "day_offset": 0,
  "total_count": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/06f4853d-5a42-4990-935e-d2bab4497c6e/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "06f4853d-5a42-4990-935e-d2bab4497c6e",
    "variables": {
        "sport": "football",
        "day_offset": 0
    }
}'

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="06f4853d-5a42-4990-935e-d2bab4497c6e") — the "get_daily_fixtures" function, which retrieves every match or event for a selected sport and day from https://flashscore.com. Returns competitions, participant IDs, scores, statuses, period data, and match IDs for follow-up lookups..

It takes sport (str), day_offset (int). Return the result as structured JSON.