Marketplace
No threads yet
Live

get_racecards_by_date

racingpost.com

Returns all meetings and races scheduled for a specified date from https://racingpost.com, including going, weather, race metadata, and betting returns for completed races. Defaults to the current UTC date.

Parameters1
Runs11
Updated10d ago
Operational11 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_racecards_by_date?

Returns all meetings and races scheduled for a specified date from https://racingpost.com, including going, weather, race metadata, and betting returns for completed races. Defaults to the current UTC date. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass date and get the result back without maintaining a scraper.

Response

{
  "date": "<string>",
  "meetings": [
    {}
  ],
  "raceCount": 0,
  "meetingCount": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/9d250c11-da22-424c-b459-c3b34d930288/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "9d250c11-da22-424c-b459-c3b34d930288",
    "variables": {
        "date": "today"
    }
}'

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="9d250c11-da22-424c-b459-c3b34d930288") — the "get_racecards_by_date" function, which returns all meetings and races scheduled for a specified date from https://racingpost.com, including going, weather, race metadata, and betting returns for completed races. Defaults to the current UTC date..

It takes date (str). Return the result as structured JSON.