Marketplace
No threads yet
Live

get_race_results

equibase.com

Gets detailed results for a completed race from https://equibase.com, including race conditions, top finisher win/place/show payoffs, full finish order, winning connections, and exotic wager payoffs.

Parameters4
Runs14
Updated10d ago
Degraded14 runs · 92.8% 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_race_results?

Gets detailed results for a completed race from https://equibase.com, including race conditions, top finisher win/place/show payoffs, full finish order, winning connections, and exotic wager payoffs. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass track, race_date, race_number, country and get the result back without maintaining a scraper.

Response

{
  "race": {},
  "top_finishers": [
    {}
  ],
  "exotic_payoffs": [
    {}
  ],
  "order_of_finish": [
    {}
  ]
}

Call it

curl --location 'https://us-prod.notte.cc/functions/69f908a6-d19c-46f8-a042-81027b636afc/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "69f908a6-d19c-46f8-a042-81027b636afc",
    "variables": {
        "track": "SAR",
        "race_date": "08/13/2026",
        "race_number": 8,
        "country": "USA"
    }
}'

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="69f908a6-d19c-46f8-a042-81027b636afc") — the "get_race_results" function, which gets detailed results for a completed race from https://equibase.com, including race conditions, top finisher win/place/show payoffs, full finish order, winning connections, and exotic wager payoffs..

It takes track (str), race_date (str), race_number (int), country (str). Return the result as structured JSON.