Live
get_competition_history
data.fei.orgReturns complete competition history for a horse from https://data.fei.org with dates, shows, events, athletes, positions, scores, and reusable encrypted IDs.
Parameters2
Runs9
Updated3d ago
Degraded9 runs · 66.6% 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_competition_history?
Returns complete competition history for a horse from https://data.fei.org with dates, shows, events, athletes, positions, scores, and reusable encrypted IDs. 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>",
"horse": {},
"competitions": [
{
"show": "<string>",
"event": "<string>",
"athlete": "<string>",
"position": "<string>",
"start_date": "<string>",
"competition": "<string>",
"athlete_fei_id": "<string>",
"national_federation": "<string>"
}
],
"total_competitions": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/93038902-b569-431b-8d75-fc0988a1457f/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "93038902-b569-431b-8d75-fc0988a1457f",
"variables": {
"p_id": "26795FBFD8FC29E00E38CC5EFA264BF1",
"timeout_seconds": 45
}
}'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="93038902-b569-431b-8d75-fc0988a1457f") — the "get_competition_history" function, which returns complete competition history for a horse from https://data.fei.org with dates, shows, events, athletes, positions, scores, and reusable encrypted IDs.. It takes p_id (str), timeout_seconds (int). Return the result as structured JSON.