Event Type: Jackpot Market – Odds Update

Updated on November 5, 2025

Received when odds or Jackpot market data is updated.

Received Response (from SDK)

{
  "data": [
    {
      "room": "10.1755667485919-JKPT",
      "data": {
        "eid": 34492747,
        "mid": "10.1755667485919-JKPT",
        "na": "jackpot data",
        "res": "",
        "s": true,
        "go": false,
        "t": 1752141716612,
        "r": [
          {
            "sb": null,
            "ra": 9,
            "ta": "India",
            "tap": "Rohit",
            "rid": 824423
          },
          {
            "sb": "S",
            "ra": 10,
            "ta": "England",
            "tap": "Ben",
            "rid": 455535
          }
        ]
      }
    }
  ]
}

Event Type: Jackpot Market – Runners Suspended

Received when runners in the Jackpot market are suspended.

Received Response (from SDK)


  "data": [
    {
      "room": "10.1755667485919-JKPT",
      "data": {
        "eid": 34492747,
        "mid": "10.1755667485919-JKPT",
        "na": "jackpot data",
        "res": "",
        "s": true,
        "go": false,
        "t": 1752141716612,
        "r": [
          {
            "sb": "S",
            "ra": 9,
            "ta": "India",
            "tap": "Rohit",
            "rid": 824423
          },
          {
            "sb": null,
            "ra": 10,
            "ta": "England",
            "tap": "Ben",
            "rid": 455535
          }
        ]
      }
    }
  ]
}

Event Type: Jackpot Market – Runners Inactivated

Received when runners in the Jackpot market are inactivated (no longer eligible for betting).

Received Response (from SDK)

{
  "data": [
    {
      "room": "10.1755667485919-JKPT",
      "data": {
        "eid": 34492747,
        "mid": "10.1755667485919-JKPT",
        "na": "jackpot data",
        "res": "",
        "s": true,
        "go": false,
        "t": 1752141716612,
        "r": [
          {
            "sb": null,
            "ra": 9,
            "ta": "India",
            "tap": "Rohit",
            "rid": 824423,
            "s": true
          },
          {
            "sb": null,
            "ra": 10,
            "ta": "England",
            "tap": "Ben",
            "rid": 455535,
            "s": false
          }
        ]
      }
    }
  ]
}

Glossary of Keys (Jackpot Market)

KeyDescription
roomInternal Jackpot market identifier
eidEvent ID
midMarket ID
naMarket name
resMarket result (if declared)
sbSuspension flag (S = Suspended, null = Active)
raRunner number (e.g., team or participant)
taTeam or runner name
tapPlayer name (if applicable)
ridRunner ID
sRunner & Market active status (true = active, false = inactive)
goGame over flag (true / false)
tEpoch timestamp in milliseconds
r[]Array of runners with associated details

Usage Notes:

  • sb: "S" indicates that the runner is suspended and not available for betting.
  • s: false indicates that the runner is inactivated and should not be included in further betting options.
  • The go flag can be used to track whether the game has concluded (i.e., game over).