SSE MarketChange Information - Saba-sports/OddsDirectAPI GitHub Wiki

[
    {
        eventId,
        betType,
        marketId,
        isLive,
        marketStatus,
        selections:[
            { 
                key,
                point,
                point2,
                oddsPrice:{
                    parlayPrice,
                    malayPrice,
                    decimalPrice,
                    hongKongPrice,
                    indoPrice,
                    americanPrice
                }
            }
        ]
    }
]
Name Format Description
eventId int Specifies the identifier of the event.
betType int Specifies the type of the betting.
marketId int Specifies the identifier of the market.
isLive bool Specifies whether the game is live.
marketStatus string Specifies the status of the market.running / suspend / closePrice / closed
selections SelectionInfo[] Specifies the information of bet choices.

SelectionInfo

Name Format Description
key string Specifies Bet type selections key.
point decimal? Specifies the point spread.
point2 decimal? Specifies the point spread 2. Only for bet type=646; point=HDP, point2=OU
oddsPrice OddsPriceInfo Specifies the information of odds.
OddsPriceInfo
Name Format Description
parlayPrice decimal Specifies the price of parlay price.
malayPrice decimal Specifies the price of Marlay odds type
hongKongPrice decimal Specifies the price of Hong Kong odds type.
decimalPrice decimal Specifies the price of Decimal odds type.
indoPrice decimal Specifies the price of Indo odds type.
americanPrice decimal Specifies the price of American odds type.