Live
get_horse_profile
data.fei.orgReturns detailed horse profiles from https://data.fei.org with registration, identification, status, lineage, ownership and administrative records.
Parameters2
Runs18
Updated3d ago
Degraded18 runs · 61.1% succeeded
30 days ago90 days agoranfailednot checkedtoday
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_horse_profile?
Returns detailed horse profiles from https://data.fei.org with registration, identification, status, lineage, ownership and administrative records. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass p_id, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"p_id": "<string>",
"fei_id": "<string>",
"status": {},
"lineage": {},
"ownerships": [
{}
],
"current_name": "<string>",
"registrations": [
{}
],
"identification": {},
"qualifications": {},
"name_information": {},
"registration_status": "<string>",
"administrative_information": {}
}Call it
curl --location 'https://us-prod.notte.cc/functions/3aff602c-6f48-4e3d-8862-35a281efc5ca/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "3aff602c-6f48-4e3d-8862-35a281efc5ca",
"variables": {
"p_id": "26795FBFD8FC29E00E38CC5EFA264BF1",
"timeout_seconds": 30
}
}'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="3aff602c-6f48-4e3d-8862-35a281efc5ca") — the "get_horse_profile" function, which returns detailed horse profiles from https://data.fei.org with registration, identification, status, lineage, ownership and administrative records.. It takes p_id (str), timeout_seconds (int). Return the result as structured JSON.