get_horse_profile_data
racingpost.comReturns detailed horse profile tab data from https://racingpost.com for a horse_id and slug. Supports form, stats, pedigree, and progeny tabs, including form history with race records, stats breakdowns, pedigree tree data, and progeny performance datasets when available.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_horse_profile_data?
Returns detailed horse profile tab data from https://racingpost.com for a horse_id and slug. Supports form, stats, pedigree, and progeny tabs, including form history with race records, stats breakdowns, pedigree tree data, and progeny performance datasets when available. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass horse_id, horse_slug, tab, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"tab": "<string>",
"data": {},
"horse_id": 0,
"horse_slug": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/3c20fa8b-7b49-4bfb-8214-bdbb6662272a/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "3c20fa8b-7b49-4bfb-8214-bdbb6662272a",
"variables": {
"horse_id": 3583183,
"horse_slug": "austrian-theory",
"tab": "form",
"timeout_seconds": 30
}
}'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="3c20fa8b-7b49-4bfb-8214-bdbb6662272a") — the "get_horse_profile_data" function, which returns detailed horse profile tab data from https://racingpost.com for a horse_id and slug. Supports form, stats, pedigree, and progeny tabs, including form history with race records, stats breakdowns, pedigree tree data, and progeny performance datasets when available.. It takes horse_id (int), horse_slug (str), tab (str), timeout_seconds (int). Return the result as structured JSON.