Marketplace
No threads yet
Live

get_lucky_15_horse_racing_tips

gg.co.uk

Returns the editor's curated daily Lucky 15 horse racing selections from https://gg.co.uk. Each pick includes its horse, race time, venue, links, silks, result status, and the best available odds data exposed by the site.

Parameters1
Runs10
Updated10d ago
Degraded10 runs · 90% 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_lucky_15_horse_racing_tips?

Returns the editor's curated daily Lucky 15 horse racing selections from https://gg.co.uk. Each pick includes its horse, race time, venue, links, silks, result status, and the best available odds data exposed by the site. 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>",
  "tips": [
    {
      "odds": "<string>",
      "horse": "<string>",
      "venue": "<string>",
      "status": "Best Odds",
      "event_id": "<string>",
      "race_url": "<string>",
      "horse_url": "<string>",
      "race_time": "<string>",
      "silks_url": "<string>",
      "horse_slug": "<string>",
      "odds_decimal": 0,
      "event_core_id": "<string>",
      "participant_id": "<string>"
    }
  ],
  "date_label": "<string>",
  "source_url": "<string>",
  "total_tips": 0,
  "selection_name": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/93c9cfb1-f095-4c00-a848-27b7e1788c2a/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "93c9cfb1-f095-4c00-a848-27b7e1788c2a",
    "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="93c9cfb1-f095-4c00-a848-27b7e1788c2a") — the "get_lucky_15_horse_racing_tips" function, which returns the editor's curated daily Lucky 15 horse racing selections from https://gg.co.uk. Each pick includes its horse, race time, venue, links, silks, result status, and the best available odds data exposed by the site..

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