get_daily_horse_racing_tips
myracing.comRetrieves the current accumulator, NAP of the day, double, and Lucky 15 horse-racing recommendations from https://www.myracing.com, including selections, odds, race details, bookmaker prices, and expert analysis.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_daily_horse_racing_tips?
Retrieves the current accumulator, NAP of the day, double, and Lucky 15 horse-racing recommendations from https://www.myracing.com, including selections, odds, race details, bookmaker prices, and expert analysis. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass tip_type and get the result back without maintaining a scraper.
Response
{
"tips": [
{
"odds": "<string>",
"venue": "<string>",
"is_nap": true,
"rating": 0,
"lay_bet": true,
"race_id": "<string>",
"analysis": "<string>",
"silk_url": "<string>",
"tip_type": "<string>",
"course_id": "<string>",
"race_date": "<string>",
"race_name": "<string>",
"race_time": "<string>",
"runner_id": "<string>",
"horse_name": "<string>",
"race_class": "<string>",
"source_url": "<string>",
"is_each_way": true,
"source_type": "<string>",
"tipped_odds": "<string>",
"racecard_url": "<string>",
"each_way_odds": {},
"is_non_runner": true,
"bookmaker_odds": {},
"race_timestamp": 0,
"each_way_places": {},
"tip_group_title": "<string>",
"tip_group_description": "<string>",
"bookmaker_decimal_odds": {}
}
],
"count": 0,
"source": "<string>",
"tip_types": [
"<string>"
],
"card_dates": [
"<string>"
],
"selected_tip_type": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/10abc9e6-397e-49b8-bcb5-675f2d86b81f/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "10abc9e6-397e-49b8-bcb5-675f2d86b81f",
"variables": {
"tip_type": "all"
}
}'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="10abc9e6-397e-49b8-bcb5-675f2d86b81f") — the "get_daily_horse_racing_tips" function, which retrieves the current accumulator, NAP of the day, double, and Lucky 15 horse-racing recommendations from https://www.myracing.com, including selections, odds, race details, bookmaker prices, and expert analysis.. It takes tip_type (str). Return the result as structured JSON.