Basketball WebSockets
Public Odds360 live endpoints
Updates
wss://odds360.sportmicro.com/live/{bookmaker_id}/basketball/{match_id}/updates
https://odds360.sportmicro.com/live/{bookmaker_id}/basketball/{match_id}/updates
Overrides
wss://odds360.sportmicro.com/live/{bookmaker_id}/basketball/{match_id}/overrides
https://odds360.sportmicro.com/live/{bookmaker_id}/basketball/{match_id}/overrides
Dashboard routes used by sportmicro-frontend
GET /bookmaker/{bookmakerId}/basketball/{matchId}/updates
GET /bookmaker/{bookmakerId}/basketball/{matchId}/overrides
Parameters
bookmaker_id: the Odds360 bookmaker UUIDsport:basketballmatch_id: the basketball match id from SportMicro
WebSocket example
const ws = new WebSocket(
"wss://odds360.sportmicro.com/live/<bookmaker_id>/basketball/<match_id>/updates"
);
ws.addEventListener("message", (ev) => console.log(JSON.parse(ev.data)));