Httpswww APIhttpswww.sportinglife ↗
Access detailed horse racing information from Sporting Life, including complete racecards organized by date and comprehensive runner details for specific races. Plan your betting strategy with up-to-date race listings and individual horse performance data all in one place.
curl -X GET 'https://api.parse.bot/scraper/bedce0aa-e449-40ef-af7c-ab1c6c571914/get_racecards?date=2026-08-22' \ -H 'X-API-Key: $PARSE_API_KEY'
Returns all race meetings and their races for a given date. Each race includes venue, time, title, class, distance, going, surface, and runner count. Use race_id from the results to fetch detailed runner information via get_race_detail.
| Param | Type | Description |
|---|---|---|
| daterequired | string | Race date in ISO format YYYY-MM-DD (e.g. 2026-08-22). |
{
"type": "object",
"fields": {
"date": "string — the requested date",
"meetings": "array of meeting objects, each containing venue, country, going, surface, and a races array"
},
"sample": {
"data": {
"date": "2026-08-22",
"meetings": [
{
"date": "2026-08-22",
"going": "Good to Soft (Good in places)",
"races": [
{
"age": "3YO plus",
"name": "Sky Bet Strensall Stakes (Group 3)",
"time": "12:50",
"going": "Good to Soft (Good in places)",
"race_id": 934439,
"surface": "TURF",
"distance": "1m 177y",
"race_class": "1",
"race_stage": "WEIGHEDIN",
"has_handicap": false,
"runners_count": 11
}
],
"venue": "York",
"country": "England",
"surface": "Turf"
}
]
},
"status": "success"
}
}About the Httpswww API
The Httpswww API on Parse exposes 2 endpoints for the publicly available data on httpswww.sportinglife. Calls return JSON over HTTPS and are billed per successful response.
Pin a release with the API-Snapshot-Version header so canonical updates don't silently change your contract.