Endpoints

Retrieve Tournaments information for the Bookmaker

get

Fetches tournament ratings and delay recommendations for a specified sport and category.

Authorizations
UnusedstringRequired

Bearer authentication header of the form Bearer <TOKEN>.

Path parameters
bookmakerstringRequired

Identifier for the bookmaker. Generated by Sportradar, contact your OAM or CI engineer in case of any issues with obtaining the correct value.

Query parameters
categoryIdstringOptional

Unique identifier for the category. Only one ID can be specified per request.

sportIdstringRequired

Unique identifier for the sport. Only one ID can be specified per request.

Responses
200

Success

get
/v1/bookmakers/{bookmaker}
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"
    }
  ]
}

Retrieve Tournaments information for the Bookmaker

post

Fetches tournament ratings and delay recommendations for a specified combinations of sports, categories and tournaments.

Authorizations
UnusedstringRequired

Bearer authentication header of the form Bearer <TOKEN>.

Path parameters
bookmakerstringRequired

Identifier for the bookmaker. Generated by Sportradar, contact your OAM or CI engineer in case of any issues with obtaining the correct value.

Body
Responses
200

Success

post
/v1/bookmakers/{bookmaker}
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"
    }
  ]
}

Last updated

Was this helpful?