Marketplace
No threads yet
Live

get_leader_earnings_stats

equibase.com

Retrieves yearly or meet-based leader statistics from https://equibase.com for horses, jockeys, trainers, or owners ranked by earnings. Returns win/place/show totals, win and top-three percentages, earnings, per-start metrics, and all non-empty record fields exposed by Equibase.

Parameters10
Runs9
Updated8d ago
Operational9 runs · 100% 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_leader_earnings_stats?

Retrieves yearly or meet-based leader statistics from https://equibase.com for horses, jockeys, trainers, or owners ranked by earnings. Returns win/place/show totals, win and top-three percentages, earnings, per-start metrics, and all non-empty record fields exposed by Equibase. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass category, time_frame, year, track, country, meet_begin_date, meet_end_date, breed_type, max_rows, timeout_seconds and get the result back without maintaining a scraper.

Response

{
  "year": 0,
  "as_of": "<string>",
  "track": "<string>",
  "country": "<string>",
  "records": [
    {}
  ],
  "sort_by": "<string>",
  "category": "<string>",
  "breed_type": "<string>",
  "source_url": "<string>",
  "time_frame": "<string>",
  "total_rows": 0,
  "meet_end_date": "<string>",
  "returned_rows": 0,
  "meet_begin_date": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/fc8f6cd1-b59b-4b69-91b6-bca82c84c6cc/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "fc8f6cd1-b59b-4b69-91b6-bca82c84c6cc",
    "variables": {
        "category": "jockey",
        "time_frame": "year",
        "year": 2026,
        "track": "SAR",
        "country": "USA",
        "meet_begin_date": "",
        "meet_end_date": "",
        "breed_type": "TB",
        "max_rows": 100,
        "timeout_seconds": 25
    }
}'

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="fc8f6cd1-b59b-4b69-91b6-bca82c84c6cc") — the "get_leader_earnings_stats" function, which retrieves yearly or meet-based leader statistics from https://equibase.com for horses, jockeys, trainers, or owners ranked by earnings. Returns win/place/show totals, win and top-three percentages, earnings, per-start metrics, and all non-empty record fields exposed by Equibase..

It takes category (str), time_frame (str), year (int), track (str), country (str), meet_begin_date (str), meet_end_date (str), breed_type (str), max_rows (int), timeout_seconds (int). Return the result as structured JSON.