Marketplace
No threads yet
Live

get_formscan_collateral_form

attheraces.com

Retrieves FormScan collateral form data for a specific race from https://www.attheraces.com. Returns ATR index ratings and detailed runner comparison lines for prior meetings, including directional impact metrics and no-data rows where applicable.

Parameters2
Runs12
Updated9d ago
Failing12 runs · 41.6% 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_formscan_collateral_form?

Retrieves FormScan collateral form data for a specific race from https://www.attheraces.com. Returns ATR index ratings and detailed runner comparison lines for prior meetings, including directional impact metrics and no-data rows where applicable. 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": [
    {}
  ],
  "full_formscan_url": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/35492879-ca1a-4484-84c4-aac6e41558f8/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "35492879-ca1a-4484-84c4-aac6e41558f8",
    "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="35492879-ca1a-4484-84c4-aac6e41558f8") — the "get_formscan_collateral_form" function, which retrieves FormScan collateral form data for a specific race from https://www.attheraces.com. Returns ATR index ratings and detailed runner comparison lines for prior meetings, including directional impact metrics and no-data rows where applicable..

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