get_racecard
attheraces.comRetrieves a comprehensive racecard from https://www.attheraces.com, including race details, runners, form, connections, age and weight, official and expert ratings, commentary, performance metrics, star ratings, and betting forecast.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_racecard?
Retrieves a comprehensive racecard from https://www.attheraces.com, including race details, runners, form, connections, age and weight, official and expert ratings, commentary, performance metrics, star ratings, and betting forecast. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass race_url and get the result back without maintaining a scraper.
Response
{
"race": {},
"runners": [
{}
],
"card_type": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/d7335f03-1dbf-4ca8-b188-7a3ae956dc2f/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "d7335f03-1dbf-4ca8-b188-7a3ae956dc2f",
"variables": {
"race_url": "https://www.attheraces.com/racecard/Newmarket/15-August-2026/1410"
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="d7335f03-1dbf-4ca8-b188-7a3ae956dc2f") — the "get_racecard" function, which retrieves a comprehensive racecard from https://www.attheraces.com, including race details, runners, form, connections, age and weight, official and expert ratings, commentary, performance metrics, star ratings, and betting forecast.. It takes race_url (str). Return the result as structured JSON.