get_draw_statistics
attheraces.comRetrieves draw statistics for a specific race from https://www.attheraces.com, with each runner's draw position, expected and actual wins, percentage result, directional bias, and the source sample size.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_draw_statistics?
Retrieves draw statistics for a specific race from https://www.attheraces.com, with each runner's draw position, expected and actual wins, percentage result, directional bias, and the source sample size. 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": {},
"sample_size": 0,
"draw_statistics": [
{}
],
"full_draw_check_url": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/c8263a4e-37da-4ec2-8642-b5f5b68808f3/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "c8263a4e-37da-4ec2-8642-b5f5b68808f3",
"variables": {
"race_url": "https://www.attheraces.com/racecard/Ffos-Las/23-June-2026/1430"
}
}'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="c8263a4e-37da-4ec2-8642-b5f5b68808f3") — the "get_draw_statistics" function, which retrieves draw statistics for a specific race from https://www.attheraces.com, with each runner's draw position, expected and actual wins, percentage result, directional bias, and the source sample size.. It takes race_url (str). Return the result as structured JSON.