Marketplace
No threads yet
Live

list_fixture_trade_history

api.prod.sx.bet

Returns paginated executed bet history for a fixture from https://sx.bet, including bettors, stakes, decimal odds, implied probabilities, outcomes, settlement status, makers and full non-empty records.

Parameters3
Runs5
Updated1d ago
Operational5 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 list_fixture_trade_history?

Returns paginated executed bet history for a fixture from https://sx.bet, including bettors, stakes, decimal odds, implied probabilities, outcomes, settlement status, makers and full non-empty records. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass fixture_id, page, per_page and get the result back without maintaining a scraper.

Response

{
  "page": 0,
  "perPage": 0,
  "fixtureId": "<string>",
  "totalCount": 0,
  "totalPages": 0,
  "hasNextPage": true,
  "executedBets": [
    {
      "betTime": "<string>",
      "settled": true,
      "fillHash": "<string>",
      "stakeRaw": "<string>",
      "baseToken": "<string>",
      "decimalOdds": 0,
      "stakeAmount": 0,
      "tradeStatus": "<string>",
      "outcomeBetOn": "<string>",
      "sourceRecord": {},
      "bettorAddress": "<string>",
      "outcomeNumber": 0,
      "bettorUsername": "<string>",
      "makerAddresses": [
        "<string>"
      ],
      "makerUsernames": [
        "<string>"
      ],
      "settlementStatus": "<string>",
      "impliedProbability": 0,
      "impliedProbabilityPercent": 0
    }
  ],
  "hasPreviousPage": true
}

Call it

curl --location 'https://us-prod.notte.cc/functions/73452909-9aca-46a5-9de1-bc10cf3c2712/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "73452909-9aca-46a5-9de1-bc10cf3c2712",
    "variables": {
        "fixture_id": "L19891044",
        "page": 1,
        "per_page": 15
    }
}'

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="73452909-9aca-46a5-9de1-bc10cf3c2712") — the "list_fixture_trade_history" function, which returns paginated executed bet history for a fixture from https://sx.bet, including bettors, stakes, decimal odds, implied probabilities, outcomes, settlement status, makers and full non-empty records..

It takes fixture_id (str), page (int), per_page (int). Return the result as structured JSON.