search_events
ticketmaster.com.mxSearches Ticketmaster's worldwide event inventory from https://ticketmaster.com.mx with keyword, sort, page, region, and category filters. Returns each event's available source data, including dates, venues, artist lineups, classifications, and ticket-sale status.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_events?
Searches Ticketmaster's worldwide event inventory from https://ticketmaster.com.mx with keyword, sort, page, region, and category filters. Returns each event's available source data, including dates, venues, artist lineups, classifications, and ticket-sale status. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, sort, page, region, category and get the result back without maintaining a scraper.
Response
{
"page": 0,
"sort": "<string>",
"query": "<string>",
"events": [
{}
],
"region": "<string>",
"category": "<string>",
"page_size": 0,
"total_pages": 0,
"total_events": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/86e19c7e-4659-4f44-a4d7-c1d3cc480074/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "86e19c7e-4659-4f44-a4d7-c1d3cc480074",
"variables": {
"query": "Disney",
"sort": "relevance",
"page": 0,
"region": "",
"category": ""
}
}'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="86e19c7e-4659-4f44-a4d7-c1d3cc480074") — the "search_events" function, which searches Ticketmaster's worldwide event inventory from https://ticketmaster.com.mx with keyword, sort, page, region, and category filters. Returns each event's available source data, including dates, venues, artist lineups, classifications, and ticket-sale status.. It takes query (str), sort (str), page (int), region (str), category (str). Return the result as structured JSON.