Marketplace
No threads yet
Live

get_pace_analysis

attheraces.com

Retrieves pace analysis for a specific race from https://www.attheraces.com, including each runner's pace rating and typical racing position derived from the pace profile. Returns race metadata, pace forecast, and per-runner pace fields.

Parameters2
Runs10
Updated8d ago
Failing10 runs · 50% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is get_pace_analysis?

Retrieves pace analysis for a specific race from https://www.attheraces.com, including each runner's pace rating and typical racing position derived from the pace profile. Returns race metadata, pace forecast, and per-runner pace fields. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass race_url, timeout_seconds and get the result back without maintaining a scraper.

Response

{
  "race": {},
  "runners": [
    {}
  ],
  "pace_forecast": "<string>",
  "position_bands": [
    {}
  ]
}

Call it

curl --location 'https://us-prod.notte.cc/functions/84745dad-35bc-443e-80ce-231ff388fe24/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "84745dad-35bc-443e-80ce-231ff388fe24",
    "variables": {
        "race_url": "https://www.attheraces.com/racecard/Catterick/17-August-2026/1415",
        "timeout_seconds": 40
    }
}'

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="84745dad-35bc-443e-80ce-231ff388fe24") — the "get_pace_analysis" function, which retrieves pace analysis for a specific race from https://www.attheraces.com, including each runner's pace rating and typical racing position derived from the pace profile. Returns race metadata, pace forecast, and per-runner pace fields..

It takes race_url (str), timeout_seconds (int). Return the result as structured JSON.