Endpoints
Fetches tournament ratings and delay recommendations for a specified sport and category.
Identifier for the bookmaker. Generated by Sportradar, contact your OAM or CI engineer in case of any issues with obtaining the correct value.
Unique identifier for the category. Only one ID can be specified per request.
Unique identifier for the sport. Only one ID can be specified per request.
Success
Unauthorized
Access denied
Throttled
Internal error
GET https://<URL>/v1/bookmakers/{bookmaker} HTTP/1.1
'Authorization: Bearer <JWT>'
'Accept: */*'
{
"items": [
{
"liveTimeDelaySettings": {
"liveTimeDelayTv": 1,
"liveTimeDelayUmpire": 1,
"liveTimeDelayVenue": 1
},
"liveTr": 1,
"prematchTr": 1,
"tournamentId": "text"
}
]
}
Fetches tournament ratings and delay recommendations for a specified combinations of sports, categories and tournaments.
Identifier for the bookmaker. Generated by Sportradar, contact your OAM or CI engineer in case of any issues with obtaining the correct value.
Success
Unauthorized
Access denied
Throttled
Internal error
POST https://<URL>/v1/bookmakers/{bookmaker} HTTP/1.1
'Authorization: Bearer <JWT>'
'Accept: */*'
{
"items": [
{
"liveTimeDelaySettings": {
"liveTimeDelayTv": 1,
"liveTimeDelayUmpire": 1,
"liveTimeDelayVenue": 1
},
"liveTr": 1,
"prematchTr": 1,
"tournamentId": "text"
}
]
}
Was this helpful?