get_event_details
ticketmaster.com.mxRetrieves detailed Ticketmaster event data from https://ticketmaster.com.mx by event ID, including event-page venue, sections, fees, and ticket-limit fields when accessible. If the direct event page is access-protected, it falls back to search results using event_name and returns the matched event with a source indicator.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_event_details?
Retrieves detailed Ticketmaster event data from https://ticketmaster.com.mx by event ID, including event-page venue, sections, fees, and ticket-limit fields when accessible. If the direct event page is access-protected, it falls back to search results using event_name and returns the matched event with a source indicator. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass event_id, event_name, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"event": {},
"source": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/145db8a4-c341-4c86-9a24-8d55586ddcab/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "145db8a4-c341-4c86-9a24-8d55586ddcab",
"variables": {
"event_id": "3D0064A8EBCAA484",
"event_name": "Disney en concierto. Un recorrido musical",
"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="145db8a4-c341-4c86-9a24-8d55586ddcab") — the "get_event_details" function, which retrieves detailed Ticketmaster event data from https://ticketmaster.com.mx by event ID, including event-page venue, sections, fees, and ticket-limit fields when accessible. If the direct event page is access-protected, it falls back to search results using event_name and returns the matched event with a source indicator.. It takes event_id (str), event_name (str), timeout_seconds (int). Return the result as structured JSON.