get_race_tab_details
racingpost.comReturns race tab details from https://racingpost.com for a race_id, including verdict commentary, newspaper tips by horse, and predictor runner scores. Use a race_id from racecards/meetings data for upcoming or declared races.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_race_tab_details?
Returns race tab details from https://racingpost.com for a race_id, including verdict commentary, newspaper tips by horse, and predictor runner scores. Use a race_id from racecards/meetings data for upcoming or declared races. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass race_id, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"details": {},
"race_id": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/9d62dd9f-22fe-4147-a835-95c3586af251/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "9d62dd9f-22fe-4147-a835-95c3586af251",
"variables": {
"race_id": 924962,
"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="9d62dd9f-22fe-4147-a835-95c3586af251") — the "get_race_tab_details" function, which returns race tab details from https://racingpost.com for a race_id, including verdict commentary, newspaper tips by horse, and predictor runner scores. Use a race_id from racecards/meetings data for upcoming or declared races.. It takes race_id (int), timeout_seconds (int). Return the result as structured JSON.