Event Type: Ball-by-Ball Market – Odds Update

Updated on November 7, 2025

Received when odds change for a Ball-by-Ball (BB) market. This includes back/lay prices, live runs, and betting limits.

Received Response (from SDK)

{
  "data": [
    {
      "room": "4.109114319179-BB",
      "data": {
        "eid": 34484326,
        "mid": "4.109114319179-BB",
        "na": "sdas",
        "bl": 0.1,
        "res": "",
        "sb": null,
        "lr": 100,
        "br": 100,
        "l": 6,
        "b": 3,
        "go": false,
        "s": true,
        "t": 1752142908670
      }
    }
  ]
}

Event Type: Ball-by-Ball Market – Suspended

Received when the market is suspended temporarily (e.g., between balls).

Received Response (from SDK)

{
  "data": [
    {
      "room": "4.109114319179-BB",
      "data": {
        "eid": 34484326,
        "mid": "4.109114319179-BB",
        "na": "sdas",
        "bl": 0.1,
        "res": "",
        "sb": "S",
        "lr": 100,
        "br": 100,
        "l": 0,
        "b": 0,
        "go": false,
        "s": true,
        "t": 1752143600895
      }
    }
  ]
}

Event Type: Ball-by-Ball Market – Abandoned

Received when a market is marked as abandoned, typically when a match or session is canceled or invalidated.

Received Response (from SDK)

{
  "data": [
    {
      "room": "4.109114319179-BB",
      "data": {
        "eid": 34484326,
        "mid": "4.109114319179-BB",
        "na": "sdas",
        "bl": 0.1,
        "res": "Abandoned",
        "sb": null,
        "lr": 90,
        "br": 110,
        "l": 5,
        "b": 5,
        "s": true,
        "go": false,
        "t": 1752143838140
      }
    }
  ]
}

Glossary of Keys (Ball-by-Ball)

KeyDescription
roomInternal identifier for the BB market
eidEvent ID
midMarket ID
naMarket name
blBall Number
resResult status (e.g., "Abandoned" or empty string for live)
sbStatus flag – "S" = Suspended, null = Active, "B" = Ball running
lrNo rate
brYes rate
lNo price
bYes price
sIs market active (true / false)
tEpoch timestamp in milliseconds

Usage Notes:

  • Use sb: "S" to suspend betting UI.
  • Use res: "Abandoned" to permanently disable and mark outcome.
  • Update odds dynamically using l, b, lr, and br.