get_race_card_entries
equibase.comRetrieves race card entries for a selected track and date from https://equibase.com, including race-level details and detailed runner information for each race. Returns race number, race type, purse, distance, surface, post time, starters, and runner fields such as program number, post position, connections, odds, medication, and horse references.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_race_card_entries?
Retrieves race card entries for a selected track and date from https://equibase.com, including race-level details and detailed runner information for each race. Returns race number, race type, purse, distance, surface, post time, starters, and runner fields such as program number, post position, connections, odds, medication, and horse references. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass track, race_date, country, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"races": [
{
"purse": "<string>",
"runners": [
{
"jockey": "<string>",
"weight": "<string>",
"age_sex": "<string>",
"trainer": "<string>",
"registry": "<string>",
"horse_name": "<string>",
"medication": "<string>",
"post_position": "<string>",
"claiming_price": "<string>",
"program_number": "<string>",
"reference_number": "<string>",
"horse_profile_url": "<string>",
"morning_line_odds": "<string>",
"jockey_profile_url": "<string>",
"trainer_profile_url": "<string>"
}
],
"surface": "<string>",
"distance": "<string>",
"race_url": "<string>",
"post_time": "<string>",
"race_type": "<string>",
"race_number": 0,
"number_of_starters": 0
}
],
"track": "<string>",
"country": "<string>",
"race_date": "<string>",
"race_card_url": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/93636c13-23f4-451c-a995-6833341d16cf/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "93636c13-23f4-451c-a995-6833341d16cf",
"variables": {
"track": "SAR",
"race_date": "08/13/2026",
"country": "USA",
"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.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="93636c13-23f4-451c-a995-6833341d16cf") — the "get_race_card_entries" function, which retrieves race card entries for a selected track and date from https://equibase.com, including race-level details and detailed runner information for each race. Returns race number, race type, purse, distance, surface, post time, starters, and runner fields such as program number, post position, connections, odds, medication, and horse references.. It takes track (str), race_date (str), country (str), timeout_seconds (int). Return the result as structured JSON.