Marketplace
No threads yet
Live

list_fixtures_by_day

flashscore.com

Returns league-prominence-ordered football fixtures and optional H2H enrichment for a selected day from https://flashscore.com.

Parameters6
Runs11
Updated3d ago

Playground

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

What is list_fixtures_by_day?

Returns league-prominence-ordered football fixtures and optional H2H enrichment for a selected day from https://flashscore.com. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass day_offset, limit, timezone_offset, time_budget_seconds, chunk_timeout_seconds, h2h_records_per_section and get the result back without maintaining a scraper.

Response

{
  "date": "<string>",
  "sport": "<string>",
  "source": "<string>",
  "matches": [
    {}
  ],
  "sport_id": 0,
  "day_offset": 0,
  "total_fixtures": 0,
  "timezone_offset": 0,
  "backfill_matches": 0,
  "enriched_matches": 0,
  "returned_matches": 0,
  "remaining_matches": 0,
  "top_league_matches": 0,
  "enrichment_performed": true
}

Call it

curl --location 'https://us-prod.notte.cc/functions/27c4b185-53c6-4887-954c-0ab2d07a51e1/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "27c4b185-53c6-4887-954c-0ab2d07a51e1",
    "variables": {
        "day_offset": 0,
        "limit": null,
        "timezone_offset": 0,
        "time_budget_seconds": 25.0,
        "chunk_timeout_seconds": 10.0,
        "h2h_records_per_section": 5
    }
}'

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="27c4b185-53c6-4887-954c-0ab2d07a51e1") — the "list_fixtures_by_day" function, which returns league-prominence-ordered football fixtures and optional H2H enrichment for a selected day from https://flashscore.com..

It takes day_offset (int), limit (int | None), timezone_offset (int), time_budget_seconds (float), chunk_timeout_seconds (float), h2h_records_per_section (int). Return the result as structured JSON.