get_event_odds
betano.comReturns detailed Betano event data including schedule, participants, score state, and betting markets/odds for a selected event from https://betano.com regional platforms.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_event_odds?
Returns detailed Betano event data including schedule, participants, score state, and betting markets/odds for a selected event from https://betano.com regional platforms. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass region, event_id, language_tag, prefer_live and get the result back without maintaining a scraper.
Response
{
"event": {},
"site_url": "<string>",
"source_site": "<string>",
"language_tag": "<string>",
"region_identifier": "<string>",
"selected_event_id": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/3e9437e3-16fc-4439-bab3-b9bf75e344b5/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "3e9437e3-16fc-4439-bab3-b9bf75e344b5",
"variables": {
"region": "pt",
"event_id": "",
"language_tag": "",
"prefer_live": true
}
}'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="3e9437e3-16fc-4439-bab3-b9bf75e344b5") — the "get_event_odds" function, which returns detailed Betano event data including schedule, participants, score state, and betting markets/odds for a selected event from https://betano.com regional platforms.. It takes region (str), event_id (str), language_tag (str), prefer_live (bool). Return the result as structured JSON.