Odds360 Hockey
Odds360 hockey follows the same pattern as the hockey bookmaker integration in sportmicro-frontend:
- get the match from the SportMicro hockey service
- use the same
match_idwith the bookmaker-specific Odds360 feed - subscribe to live update and override streams
Service URLs
SportMicro hockey data: https://hockey.sportmicro.com/
Odds360 hockey feed: https://odds360.sportmicro.com/
Two access patterns
- Public Odds360 API:
https://odds360.sportmicro.com/hockey - Dashboard and bookmaker flow used by
sportmicro-frontend:/bookmaker/{bookmakerId}/hockey/...
Supported hockey odd groups
period-timefull-time
Odd group mapping
period-time->odds.periodTimefull-time->odds.fullTime
Recommended integration flow
1. Discover the match in SportMicro
Use the hockey data endpoints to obtain the match_id and metadata:
https://hockey.sportmicro.com/matches-livehttps://hockey.sportmicro.com/matches-by-datehttps://hockey.sportmicro.com/matcheshttps://hockey.sportmicro.com/leagueshttps://hockey.sportmicro.com/classes
Important fields:
idormatch_idleague_idleague_namehome_team_nameaway_team_namestart_timestatus_type
2. Confirm that the bookmaker can access hockey
GET /bookmaker/{bookmakerId}
The response contains the bookmaker sports list.
3. Load the hockey match list with prices
GET /bookmaker/{bookmakerId}/hockey/matches?page=0
GET /bookmaker/{bookmakerId}/hockey/matches?page=0&status=live
GET /bookmaker/{bookmakerId}/hockey/matches?page=0&league=NHL
Available query parameters:
pageleaguehomeTeamawayTeamstatuswithliveorupcoming
Backend behavior:
- page size is
100 - postponed and finished matches are excluded
- only matches with
totalOdds > 0are returned
4. Load the full hockey odds payload
GET /bookmaker/{bookmakerId}/hockey/{matchId}
Important response shape:
{
"matchId": 2450840,
"sport": "hockey",
"odds": {
"periodTime": {},
"fullTime": {}
},
"override": []
}
The frontend also loads:
GET /bookmaker/{bookmakerId}/hockey/{matchId}/verify
5. Use the raw Odds360 REST service
GET https://odds360.sportmicro.com/hockey
GET https://odds360.sportmicro.com/hockey-history
GET https://odds360.sportmicro.com/hockey-classes
GET https://odds360.sportmicro.com/hockey-leagues
6. Subscribe to live updates
Updates
wss://odds360.sportmicro.com/live/{bookmaker_id}/hockey/{match_id}/updates
https://odds360.sportmicro.com/live/{bookmaker_id}/hockey/{match_id}/updates
Overrides
wss://odds360.sportmicro.com/live/{bookmaker_id}/hockey/{match_id}/overrides
https://odds360.sportmicro.com/live/{bookmaker_id}/hockey/{match_id}/overrides
Dashboard subscriptions:
GET /bookmaker/{bookmakerId}/hockey/{matchId}/updates
GET /bookmaker/{bookmakerId}/hockey/{matchId}/overrides
7. Optional manual overrides
PATCH /bookmaker/{bookmakerId}/hockey/{matchId}/{oddType}
Typical body:
{
"oddKey": "market_name#outcome_key",
"oddValue": 1.85,
"durationSeconds": 3600,
"suspended": false
}
WebSocket example
const ws = new WebSocket(
"wss://odds360.sportmicro.com/live/<bookmaker_id>/hockey/<match_id>/updates"
);
ws.addEventListener("message", (ev) => console.log(JSON.parse(ev.data)));
SSE example
const es = new EventSource(
"https://odds360.sportmicro.com/live/<bookmaker_id>/hockey/<match_id>/updates"
);
es.addEventListener("message", (ev) => console.log(JSON.parse(ev.data)));
Notes
match_idshould come from the hockey SportMicro match feed.bookmaker_idis the UUID assigned to your Odds360 bookmaker./bookmaker/...routes are the authenticated dashboard routes used bysportmicro-frontend.https://odds360.sportmicro.com/...routes are the public Odds360 API routes.- The frontend only shows odd groups that are present and non-empty for the match.