Scores
- Betgate Cluster Integration
- Domain
-
Markets description
AmericanFootball AnyOther AustralianFootball Badminton Bandy Baseball Basketball Bowls BeachFootball BeachVolleyball Biathlon Boxing Chess Cricket Curling Darts Entertainment ESport FieldHockey Floorball Football Futsal Golf Handball IceHockey Kabaddi MMA MotorSport Olympics Politics Rugby Snooker Squash TableTennis Tennis UFC Volleyball Waterpolo
Scoreboard JSON description:
{
"eventId": string, // Event string id
"timestamp": DateTime // date time with time zone of last update
"dataVersion": int, //version of data entity
"eventStatus": string, // shows current of event - Created, Started, Paused, Finished, Retired, Abandoned, Interrupted, Cancelled, Postponed
"currentGameStage": int, // stage,
"currentGameSubStage": nullable int, // substage,
"serverNumber": nullable int, // server number ,
"timer": { information about game timer
"changeTime": DateTime, // date time with time zone of last timer change
"currentTime": Date, // current date of timer
"gameStageMaxTime": null,
"isTimerOn": bool // shows if timer is on ,
"timerDirection": string, // timer direction - Up or Down,
"isGameStageTimer": bool // shows if timer actual only for current game stage ,
},
"server": string, //Server - unknown or team1/team2 for teams sports
"periodScores": [
{
"type": string, // description of period score type
"typePlatformId": int, // value of period score type Document with scoreboard description
"period": int, // period of score
"subPeriod": nullable int, // subperiod of score ,
"score": string, // score direction - "0-0" for example,
}
],
"sport": string, // sport
}
Example:
{
"eventId": "9689794",
"timestamp": "2023-03-01T01:22:30.0476074Z",
"dataVersion": 442,
"eventStatus": "Started",
"currentGameStage": 17,
"currentGameSubStage": null,
"serverNumber": null,
"timer": {
"changeTime": "2023-03-01T01:22:29.553Z",
"currentTime": "00:26:14",
"gameStageMaxTime": null,
"isTimerOn": true,
"timerDirection": "Up",
"isGameStageTimer": false
},
"server": "Unknown",
"periodScores": [
{
"type": "Points",
"typePlatformId": 1010,
"period": 1,
"subPeriod": null,
"score": "49-71"
},
{
"type": "Points",
"typePlatformId": 1010,
"period": 2,
"subPeriod": null,
"score": "44-53"
},
{
"type": "Points",
"typePlatformId": 1010,
"period": 3,
"subPeriod": null,
"score": "5-18"
},
{
"type": "Points",
"typePlatformId": 1010,
"period": 8,
"subPeriod": null,
"score": "49-71"
}
],
"sport": "Basketball"
}