get_event_details
ticketmaster.comGets complete details for a Ticketmaster event from https://www.ticketmaster.com using an event_id returned by search_events. Returns non-empty event fields including min/max price ranges when available, sale dates, availability, venue and performer data, seatmap URL, images, and a direct ticket URL.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_event_details?
Gets complete details for a Ticketmaster event from https://www.ticketmaster.com using an event_id returned by search_events. Returns non-empty event fields including min/max price ranges when available, sale dates, availability, venue and performer data, seatmap URL, images, and a direct ticket URL. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass event_id and get the result back without maintaining a scraper.
Response
{
"event": {},
"event_id": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/a11c398c-ddd7-4fab-ac1f-c102fc7d155e/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "a11c398c-ddd7-4fab-ac1f-c102fc7d155e",
"variables": {
"event_id": ""
}
}'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="a11c398c-ddd7-4fab-ac1f-c102fc7d155e") — the "get_event_details" function, which gets complete details for a Ticketmaster event from https://www.ticketmaster.com using an event_id returned by search_events. Returns non-empty event fields including min/max price ranges when available, sale dates, availability, venue and performer data, seatmap URL, images, and a direct ticket URL.. It takes event_id (str). Return the result as structured JSON.