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)
| Key | Description |
|---|---|
room | Internal identifier for the BB market |
eid | Event ID |
mid | Market ID |
na | Market name |
bl | Ball Number |
res | Result status (e.g., "Abandoned" or empty string for live) |
sb | Status flag – "S" = Suspended, null = Active, "B" = Ball running |
lr | No rate |
br | Yes rate |
l | No price |
b | Yes price |
s | Is market active (true / false) |
t | Epoch 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, andbr.