Marketplace
No threads yet
Live

get_daily_fixtures_with_odds

flashscore.com

Returns Flashscore daily fixtures merged with 1X2 odds from https://flashscore.com in one response. Each match includes teams, competition, start/status data, and primary-bookmaker current and opening home/draw/away prices when available.

Parameters4
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_daily_fixtures_with_odds?

Returns Flashscore daily fixtures merged with 1X2 odds from https://flashscore.com in one response. Each match includes teams, competition, start/status data, and primary-bookmaker current and opening home/draw/away prices when available. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass sport, day_offset, timezone_offset, timeout_seconds and get the result back without maintaining a scraper.

Response

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

Call it

curl --location 'https://us-prod.notte.cc/functions/b2f82d3f-fc58-4ca7-b466-b47eeefb11d0/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "b2f82d3f-fc58-4ca7-b466-b47eeefb11d0",
    "variables": {
        "sport": "football",
        "day_offset": 0,
        "timezone_offset": 0,
        "timeout_seconds": 40
    }
}'

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="b2f82d3f-fc58-4ca7-b466-b47eeefb11d0") — the "get_daily_fixtures_with_odds" function, which returns Flashscore daily fixtures merged with 1X2 odds from https://flashscore.com in one response. Each match includes teams, competition, start/status data, and primary-bookmaker current and opening home/draw/away prices when available..

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