Real time race results
[CLIENT ENDPOIINT URL]/api/racestatus
The RBHQ Results Push Feed API allows partners to integrate and receive results for racing events. Results automation is key to these races being resulted and updated in real-time.
The API is pushed to an endpoint to which each party will whitelist mutually.
The following is the different types of push available
Key | Type | Sample | Comments |
---|---|---|---|
venue | String | SUNSHINE COAST | The venue Name |
meetingId | Numeric | 1355916 | Unique ID for a meeting |
eventNumber | Numeric | 2 | Event Number of the Meeting |
eventId | String | 1377868:8 | Unique event id string |
status | String | INTERIM | |
source | String | RBHQ | The source of the results |
dateCreated | DateTime | 2022-02-19T06:40:22.8782107Z | Date and Time |
Results (Array) | Depending on the number of final positions | ||
runnerNumber | Numeric | 3 | Number of the runner |
outcomeName | String | Penfriend | Name of the runner |
finalPosition | Numeric | 1 | Position of the runner |
dividends (Array) | |||
wageringProduct | String | SP | Can be different types of products including Totes products |
poolDividends (Array) | |||
selections | Array of Numbers | [6] | |
amount | Numeric | 7.5 |
{
"venue": "SUNSHINE COAST",
"meetingId": 1377868,
"eventNumber": 8,
"eventId": "1377868:8",
"status": "INTERIM",
"source": "RBHQ",
"dateCreated": "2022-02-19T06:40:22.8782107Z",
"results": [
{
"runnerNumber": 3,
"outcomeName": "Penfriend",
"finalPosition": 1
},
{
"runnerNumber": 12,
"outcomeName": "Thought Proviking",
"finalPosition": 2
},
{
"runnerNumber": 5,
"outcomeName": "Regal Effort",
"finalPosition": 3
},
{
"runnerNumber": 1,
"outcomeName": "Sword of War",
"finalPosition": 4
}
],
"dividends": [
{
"wageringProduct": "SP",
"poolDividends": [
{
"selections": [3],
"amount": 7.5
}
]
}
]
}