Retrieve upcoming racing competitions
To retrieve information about future competitions, including their names, event numbers, event codes, and runner information, you can make a GET request to the following endpoint:
Endpoint
GET /competition/namecodes/
CURL example
This will return a list of future competitions with details such as their names, event numbers, event codes, and information about the runners participating in each competition. You can use this information when creating notifications or publishing tips.
Responses
200 Response example
Response Schema
Status Code 200
code
string
This field represents the racing type and can have values like Galloping, Harness, or Greyhounds.
name
string
The name of the venue where the competition takes place.
event_number
integer
The event number, which corresponds to the race number.
runners
string
The number of the runner that has not been scratched. They are returned as a string with each runner's name separated by a comma.
startTime
string
The starting time of the event.
runner_names
string
The runners participating in the race. They are returned as a string with each runner's name separated by string '#&#'.
Last updated