Marketplace
No threads yet
Live

get_horse_career_profile

equibase.com

Returns a horse profile from https://equibase.com with identity, pedigree, connections, career statistics by year, and historical race records with E Speed figures.

Parameters3
Runs6
Updated3d ago
Operational6 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_horse_career_profile?

Returns a horse profile from https://equibase.com with identity, pedigree, connections, career statistics by year, and historical race records with E Speed figures. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass reference_number, registry, breed_type and get the result back without maintaining a scraper.

Response

{
  "details": {},
  "pedigree": [
    {
      "name": "<string>",
      "role": "<string>",
      "registry": "<string>",
      "breed_type": "<string>",
      "profile_url": "<string>",
      "reference_number": "<string>"
    }
  ],
  "registry": "<string>",
  "breed_type": "<string>",
  "source_url": "<string>",
  "connections": [
    {
      "name": "<string>",
      "role": "<string>",
      "entity_id": "<string>",
      "profile_url": "<string>"
    }
  ],
  "historical_races": [
    {
      "breed": "<string>",
      "track": "<string>",
      "race_date": "<string>",
      "race_type": "<string>",
      "race_number": "<string>",
      "e_speed_figure": "<string>",
      "finish_position": "<string>"
    }
  ],
  "reference_number": "<string>",
  "career_statistics": [
    {
      "wins": 0,
      "period": "<string>",
      "starts": 0,
      "thirds": 0,
      "seconds": 0,
      "earnings": "<string>",
      "earnings_per_start": "<string>",
      "highest_e_speed_figure": "<string>"
    }
  ]
}

Call it

curl --location 'https://us-prod.notte.cc/functions/8a4148af-ab82-4f3a-bede-3150986a59e3/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "8a4148af-ab82-4f3a-bede-3150986a59e3",
    "variables": {
        "reference_number": "10989629",
        "registry": "T",
        "breed_type": "TB"
    }
}'

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="8a4148af-ab82-4f3a-bede-3150986a59e3") — the "get_horse_career_profile" function, which returns a horse profile from https://equibase.com with identity, pedigree, connections, career statistics by year, and historical race records with E Speed figures..

It takes reference_number (str), registry (str), breed_type (str). Return the result as structured JSON.