Marketplace
No threads yet
Live

search_events

ticketmaster.com

Searches https://www.ticketmaster.com for events by US city and state, with optional keyword filtering, zero-indexed pagination, and date or relevance sorting. Returns complete non-empty event records including dates, venues, performers, classifications, price ranges, availability, images, and direct ticket URLs.

Parameters6
Runs11
Updated10d ago
Failing11 runs · 63.6% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is search_events?

Searches https://www.ticketmaster.com for events by US city and state, with optional keyword filtering, zero-indexed pagination, and date or relevance sorting. Returns complete non-empty event records including dates, venues, performers, classifications, price ranges, availability, images, and direct ticket URLs. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass city, state_code, keyword, page, page_size, sort and get the result back without maintaining a scraper.

Response

{
  "page": {},
  "query": {},
  "events": [
    {}
  ]
}

Call it

curl --location 'https://us-prod.notte.cc/functions/128ff390-660d-4e8a-884e-deea712e353b/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "128ff390-660d-4e8a-884e-deea712e353b",
    "variables": {
        "city": "New York",
        "state_code": "NY",
        "keyword": "",
        "page": 0,
        "page_size": 10,
        "sort": "date,asc"
    }
}'

Ask an agent

Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.

prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp).

Call run(function_id="128ff390-660d-4e8a-884e-deea712e353b") — the "search_events" function, which searches https://www.ticketmaster.com for events by US city and state, with optional keyword filtering, zero-indexed pagination, and date or relevance sorting. Returns complete non-empty event records including dates, venues, performers, classifications, price ranges, availability, images, and direct ticket URLs..

It takes city (str), state_code (str), keyword (str), page (int), page_size (int), sort (str). Return the result as structured JSON.