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

KeyTypeSampleComments
venueStringSUNSHINE COASTThe venue Name
meetingIdNumeric1355916Unique ID for a meeting
eventNumberNumeric2Event Number of the Meeting
eventIdString1377868:8Unique event id string
statusStringINTERIM
sourceStringRBHQThe source of the results
dateCreatedDateTime2022-02-19T06:40:22.8782107ZDate and Time
Results (Array)Depending on the number of final positions
runnerNumberNumeric3Number of the runner
outcomeNameStringPenfriendName of the runner
finalPositionNumeric1Position of the runner
dividends (Array)
wageringProductStringSPCan be different types of products including Totes products
poolDividends (Array)
selectionsArray of Numbers[6]
amountNumeric7.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
        }
      ]
    }
  ]
}