neds.com.au APIneds.com.au ↗
Access Neds.com.au racing data via API: next-to-jump races, daily meetings, race details, and official results for thoroughbred, harness, and greyhound racing.
curl -X GET 'https://api.parse.bot/scraper/6a5dfa2c-4d36-46b5-bfcf-3eb558434309/get_next_to_jump_races?limit=5' \ -H 'X-API-Key: $PARSE_API_KEY'
Fetches the next races about to start across all racing codes (horse racing, harness, greyhounds). Returns race summaries ordered by start time, including form data, track conditions, and race comments.
| Param | Type | Description |
|---|---|---|
| limit | integer | Number of upcoming races to fetch. |
{
"type": "object",
"fields": {
"races": "array of race summary objects containing race_id, race_name, race_number, meeting_name, advertised_start, venue details, distance, track_condition, weather, and race_comment",
"total": "integer count of races returned"
},
"sample": {
"data": {
"races": [
{
"class": "MDN",
"race_id": "dfbb096a-c2c1-4f5f-a778-320e74021698",
"weather": null,
"distance": 366,
"race_name": "2F Stakes",
"meeting_id": "bb256967-1559-5be3-b756-20ad21792252",
"start_type": "",
"venue_name": "Delta Downs",
"category_id": "4a2788f8-e825-4d36-9894-efd4baf1cfae",
"race_number": 5,
"venue_state": "LA",
"meeting_name": "Delta Downs",
"race_comment": "SL WATCHME ZOOM (8) is returning from a spell...",
"distance_unit": "m",
"venue_country": "USA",
"track_condition": "Fast",
"advertised_start": "2026-05-14T01:03:00Z"
}
],
"total": 5
},
"status": "success"
}
}About the neds.com.au API
This API exposes 4 endpoints covering Neds.com.au racing data across three codes — thoroughbred, harness, and greyhound. Use get_next_to_jump_races to retrieve upcoming race summaries ordered by start time, or get_racing_events to pull all meetings and event schedules for the current day. Response fields include race IDs, advertised start times, venue details, distance, market IDs, and official results for completed races.
Race Discovery and Scheduling
The get_next_to_jump_races endpoint returns an ordered list of races about to start across all codes. Each race object in the races array includes race_id, race_name, race_number, meeting_name, advertised_start, venue details, distance, form data, track conditions, and race comments. The limit parameter controls how many upcoming races are returned. The total field indicates the count of races in the response.
The get_racing_events endpoint retrieves all meetings and individual race events scheduled for the current day. Filter by code using the sport_ids parameter: 1 for thoroughbred, 2 for harness, 3 for greyhound. The meetings array includes id, name, advertised_date, category_id, venue_id, and race_ids. The events array includes id, meeting_id, name, number, advertised_start, actual_start, and market_ids.
Race Detail and Results
get_race_detail accepts a required event_id and returns an event object alongside a markets array for that specific race. This is the endpoint to use when building a race card view or displaying runner and market information for a single event.
get_race_results also takes an event_id and returns a results array for completed races. Use this to display finishing positions and official outcomes once a race has been run. Both detail endpoints are designed to be called after obtaining an event_id from get_next_to_jump_races or get_racing_events.
- Display a live next-to-jump widget showing upcoming races with track conditions and race comments
- Build a daily race calendar filtered by code (thoroughbred, harness, or greyhound) using get_racing_events
- Retrieve market IDs from event objects to map races to betting markets in a custom interface
- Show official finishing results for completed races using get_race_results and a stored event_id
- Aggregate advertised start times across meetings to power race schedule notifications
- Pull venue and distance data from get_next_to_jump_races to enrich a form guide application
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does Neds have an official public developer API?+
What does get_racing_events return and how do I filter by racing code?+
meetings (with venue, date, category, and associated race IDs) and events (with scheduling fields including advertised_start, actual_start, and market_ids). Pass a value to the sport_ids parameter to filter: 1 for thoroughbred horse racing, 2 for harness, and 3 for greyhound.Does the API cover historical race data beyond the current day?+
get_racing_events endpoint covers the current day's meetings and events. get_race_results returns results for a completed race when you supply an event_id, but there is no dedicated historical results or past-meeting listing endpoint. You can fork this API on Parse and revise it to add a historical endpoint if your use case requires multi-day lookups.Does the API expose individual runner or jockey/trainer data?+
get_race_detail returns a markets array and an event object that may carry deeper race card data. You can fork this API on Parse and revise it to expose individual runner fields if that level of detail is required.How do I get the event_id needed for get_race_detail and get_race_results?+
get_race_detail and get_race_results require an event_id. You can obtain event IDs from the races array returned by get_next_to_jump_races (via race_id) or from the events array returned by get_racing_events (via the id field).