Live
get_australian_racing_fields_by_date
racingpost.comRetrieves Australian thoroughbred race meetings and fields for a specific date from https://racingpost.com, including race metadata and runner details from racecards or results pages.
Parameters1
Runs11
Updated8d ago
Failing11 runs · 90.9% succeeded
30 days ago90 days agoranfailednot checkedtoday
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_australian_racing_fields_by_date?
Retrieves Australian thoroughbred race meetings and fields for a specific date from https://racingpost.com, including race metadata and runner details from racecards or results pages. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass date and get the result back without maintaining a scraper.
Response
{
"date": "<string>",
"meetings": [
{}
],
"raceCount": 0,
"meetingCount": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/f330dd5e-1dd9-4f81-adf9-95a0f543a29f/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "f330dd5e-1dd9-4f81-adf9-95a0f543a29f",
"variables": {
"date": "2026-08-08"
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="f330dd5e-1dd9-4f81-adf9-95a0f543a29f") — the "get_australian_racing_fields_by_date" function, which retrieves Australian thoroughbred race meetings and fields for a specific date from https://racingpost.com, including race metadata and runner details from racecards or results pages.. It takes date (str). Return the result as structured JSON.