Marketplace
No threads yet
Live

get_sx_active_fixtures

sx.bet

Returns active betting fixtures from https://sx.bet with match details, teams, odds, market types, and market hashes. Filter by league_id for every active market group in a league, or by sport for upcoming fixtures.

Parameters2
Runs14
Updated10d ago
Operational14 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_sx_active_fixtures?

Returns active betting fixtures from https://sx.bet with match details, teams, odds, market types, and market hashes. Filter by league_id for every active market group in a league, or by sport for upcoming fixtures. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass league_id, sport and get the result back without maintaining a scraper.

Response

{
  "query": {},
  "scope": "<string>",
  "fixtures": [
    {}
  ],
  "sportCount": 0,
  "leagueCount": 0,
  "fixtureCount": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/46e315e2-38a4-4ac5-a547-59a173a243ff/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "46e315e2-38a4-4ac5-a547-59a173a243ff",
    "variables": {
        "league_id": 0,
        "sport": ""
    }
}'

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="46e315e2-38a4-4ac5-a547-59a173a243ff") — the "get_sx_active_fixtures" function, which returns active betting fixtures from https://sx.bet with match details, teams, odds, market types, and market hashes. Filter by league_id for every active market group in a league, or by sport for upcoming fixtures..

It takes league_id (int), sport (str). Return the result as structured JSON.