Marketplace
No threads yet
Live

search_horses

data.fei.org

Searches https://data.fei.org for horses by name or FEI ID and returns matching registration records, including encrypted Name_id values for detail and results lookups.

Parameters2
Runs15
Updated10d ago
Operational15 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 search_horses?

Searches https://data.fei.org for horses by name or FEI ID and returns matching registration records, including encrypted Name_id values for detail and results lookups. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass name, fei_id and get the result back without maintaining a scraper.

Response

{
  "horses": [
    {}
  ]
}

Call it

curl --location 'https://us-prod.notte.cc/functions/e5a1ad3a-76b0-4b12-99dd-aca8958696db/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "e5a1ad3a-76b0-4b12-99dd-aca8958696db",
    "variables": {
        "name": "VALEGRO",
        "fei_id": ""
    }
}'

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="e5a1ad3a-76b0-4b12-99dd-aca8958696db") — the "search_horses" function, which searches https://data.fei.org for horses by name or FEI ID and returns matching registration records, including encrypted Name_id values for detail and results lookups..

It takes name (str), fei_id (str). Return the result as structured JSON.