Endpoints
Fetches Late Bet Scores for a specified list of account IDs under a given bookmaker and sub-bookmaker. If there are multiple pages of results, the response may include a lastEvaluatedKey for pagination.
Identifier for the bookmaker. Generated by Sportradar, contact your OAM or CI engineer in case of any issues with obtaining the correct value.
Identifier for the sub-bookmaker. Generated by Sportradar, contact your OAM or CI engineer in case of any issues with obtaining the correct value. Value * retrieves all data for a bookmaker.
Comma-separated list of account IDs for which to retrieve data. Each account ID should belong to the specified bookmaker and sub-bookmaker.
Success
Unauthorized
Access denied
Throttled
Internal error
GET https://<URL>/v1/bookmakers/{bookmaker}/sub-bookmakers/{sub-bookmaker}/source HTTP/1.1
'Authorization: Bearer <JWT>'
'Accept: */*'
{
"lastEvaluatedKey": "text",
"queryExecutionTime": 1,
"requestId": "text",
"responseItem": {
"customers": [
{
"C": {
"id": "text",
"lbs": "text",
"srcId": "text"
}
}
]
},
"responseMessage": "text",
"responseStatus": "SUCCESSFUL"
}
Fetches Late Bet Scores for accounts under a bookmaker and sub-bookmaker whose scores fall within a specified range. If there are multiple pages of results, the response may include a lastEvaluatedKey for pagination.
Identifier for the bookmaker. Generated by Sportradar, contact your OAM or CI engineer in case of any issues with obtaining the correct value.
Identifier for the sub-bookmaker. Generated by Sportradar, contact your OAM or CI engineer in case of any issues with obtaining the correct value. Value * retrieves all data for a bookmaker.
Lower threshold of the range to retrieve data for. At least one of the lower/higher query parameter is mandatory.
The response will start from a provided startKey, which is the same as lastEvaluatedKey from a previous call.
Higher threshold of the range to retrieve data for. At least one of the lower/higher query parameter is mandatory.
Success
Unauthorized
Access denied
Throttled
Internal error
GET https://<URL>/v1/bookmakers/{bookmaker}/sub-bookmakers/{sub-bookmaker}/range HTTP/1.1
'Authorization: Bearer <JWT>'
'Accept: */*'
{
"lastEvaluatedKey": "text",
"queryExecutionTime": 1,
"requestId": "text",
"responseItem": {
"customers": [
{
"C": {
"id": "text",
"lbs": "text",
"srcId": "text"
}
}
]
},
"responseMessage": "text",
"responseStatus": "SUCCESSFUL"
}
Fetches Late Bet Scores for all accounts associated with a specific bookmaker and sub-bookmaker. If there are multiple pages of results, the response may include a lastEvaluatedKey for pagination.
Identifier for the bookmaker. Generated by Sportradar, contact your OAM or CI engineer in case of any issues with obtaining the correct value.
Identifier for the sub-bookmaker. Generated by Sportradar, contact your OAM or CI engineer in case of any issues with obtaining the correct value. Value * retrieves all data for a bookmaker.
The response will start from a provided lastKey, which is the same as lastEvaluatedKey from a previous call
Success
Unauthorized
Access denied
Throttled
Internal error
GET https://<URL>/v1/bookmakers/{bookmaker}/sub-bookmakers/{sub-bookmaker}/list HTTP/1.1
'Authorization: Bearer <JWT>'
'Accept: */*'
{
"lastEvaluatedKey": "text",
"queryExecutionTime": 1,
"requestId": "text",
"responseItem": {
"customers": [
{
"C": {
"id": "text",
"lbs": "text",
"srcId": "text"
}
}
]
},
"responseMessage": "text",
"responseStatus": "SUCCESSFUL"
}
Was this helpful?