tab_racing_meeting_races
Retrieve all races for a specified meeting by date, race type, and venue code. Each race includes number, start time, status, and a link to its full racecard.
Instructions
The races for one meeting (by race type + venue code), each linking to its full racecard.
Returns: {races:[{raceNumber, raceName, raceStartTime, raceStatus, hasFixedOdds, _links:{self, form}}]}
Example: Races at the Hawkesbury thoroughbred meeting {"date": "", "raceType": "R", "venueMnemonic": "HAW"}
Auth: works without a key; TAB_CLIENT_ID or TAB_CLIENT_SECRET or TAB_REFRESH_TOKEN unlocks more if set.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| date | Yes | Meeting date, YYYY-MM-DD. Required — part of the URL path. | |
| raceType | Yes | Race code: R thoroughbred, G greyhound, H harness. Required — part of the URL path. | |
| jurisdiction | No | State jurisdiction. | NSW |
| venueMnemonic | Yes | Venue code, e.g. HAW (Hawkesbury), from the meeting object. Required — part of the URL path. |