Marketplace
No threads yet
Live

get_match_betting_odds

flashscore.com

Returns all pre-match football markets, bookmakers, current odds, and opening odds from the odds comparison section of https://flashscore.com for a match and geography.

Parameters3
Runs6
Updated3d ago
Operational6 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_betting_odds?

Returns all pre-match football markets, bookmakers, current odds, and opening odds from the odds comparison section of https://flashscore.com for a match and geography. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass match_id, geo_ip_code, geo_ip_subdivision_code and get the result back without maintaining a scraper.

Response

{
  "match": {},
  "source": "<string>",
  "markets": [
    {
      "scope": "<string>",
      "bookmakers": [
        {}
      ],
      "market_type": "<string>"
    }
  ],
  "match_id": "<string>",
  "bookmakers": [
    {}
  ],
  "geo_ip_code": "<string>",
  "market_count": 0,
  "odds_available": true,
  "odds_row_count": 0,
  "bookmaker_count": 0,
  "input_not_found": true,
  "geo_ip_subdivision_code": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/be18a1da-90ba-48f4-8132-ef4078d66fa5/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "be18a1da-90ba-48f4-8132-ef4078d66fa5",
    "variables": {
        "match_id": "2q2NhX43",
        "geo_ip_code": "US",
        "geo_ip_subdivision_code": ""
    }
}'

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="be18a1da-90ba-48f4-8132-ef4078d66fa5") — the "get_match_betting_odds" function, which returns all pre-match football markets, bookmakers, current odds, and opening odds from the odds comparison section of https://flashscore.com for a match and geography..

It takes match_id (str), geo_ip_code (str), geo_ip_subdivision_code (str). Return the result as structured JSON.