Marketplace
No threads yet
Live

list_foal_crop_statistics

equibase.com

Returns horses from a selected foal crop on https://equibase.com ranked by career earnings, with sire, speed figure, starts, wins, placings, earnings, and percentages.

Parameters4
Runs7
Updated3d ago
Operational7 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 list_foal_crop_statistics?

Returns horses from a selected foal crop on https://equibase.com ranked by career earnings, with sire, speed figure, starts, wins, placings, earnings, and percentages. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass foal_year, breed_type, max_rows, timeout_seconds and get the result back without maintaining a scraper.

Response

{
  "as_of": "<string>",
  "records": [
    {
      "win": 0,
      "rank": 0,
      "show": 0,
      "place": 0,
      "starts": 0,
      "earnings": 0,
      "perStart": 0,
      "registry": "<string>",
      "sireName": "<string>",
      "topThree": 0,
      "horseName": "<string>",
      "speedFigure": 0,
      "winPercentage": 0,
      "referenceNumber": 0,
      "topThreePercentage": 0,
      "sireReferenceNumber": 0
    }
  ],
  "sort_by": "<string>",
  "foal_year": 0,
  "breed_type": "<string>",
  "source_url": "<string>",
  "total_rows": 0,
  "returned_rows": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/00bc6ce5-69d1-4431-8313-387564e42956/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "00bc6ce5-69d1-4431-8313-387564e42956",
    "variables": {
        "foal_year": 0,
        "breed_type": "TB",
        "max_rows": 100,
        "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="00bc6ce5-69d1-4431-8313-387564e42956") — the "list_foal_crop_statistics" function, which returns horses from a selected foal crop on https://equibase.com ranked by career earnings, with sire, speed figure, starts, wins, placings, earnings, and percentages..

It takes foal_year (int), breed_type (str), max_rows (int), timeout_seconds (int). Return the result as structured JSON.