tab_racing_meeting_races
Fetch the scheduled races for a meeting by date, venue code, and race type. Each race returns start time, status, fixed-odds availability, 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 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. |