Marketplace
No threads yet
Live

get_betting_consensus

api.prod.sx.bet

Returns live fixture betting consensus from https://sx.bet with best decimal odds, implied probabilities, side liquidity and market maker position percentages.

Parameters1
Runs4
Updated1d ago
Operational4 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_betting_consensus?

Returns live fixture betting consensus from https://sx.bet with best decimal odds, implied probabilities, side liquidity and market maker position percentages. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass fixture_id and get the result back without maintaining a scraper.

Response

{
  "fixture": {},
  "markets": [
    {}
  ],
  "baseToken": {},
  "marketCount": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/6f0e12e1-e57c-4083-953a-a3f3770533f4/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "6f0e12e1-e57c-4083-953a-a3f3770533f4",
    "variables": {
        "fixture_id": "L18904671"
    }
}'

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="6f0e12e1-e57c-4083-953a-a3f3770533f4") — the "get_betting_consensus" function, which returns live fixture betting consensus from https://sx.bet with best decimal odds, implied probabilities, side liquidity and market maker position percentages..

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