Marketplace
No threads yet
Live

get_city_upcoming_events

bandsintown.com

Returns one paginated page of upcoming live events from a city page on https://bandsintown.com. Uses the city pagination API when coordinates are available, otherwise falls back to JSON-LD event data.

Parameters5
Runs11
Updated8d ago
Operational11 runs · 100% 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 get_city_upcoming_events?

Returns one paginated page of upcoming live events from a city page on https://bandsintown.com. Uses the city pagination API when coordinates are available, otherwise falls back to JSON-LD event data. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass city_slug, page, start_date, end_date, timeout_seconds and get the result back without maintaining a scraper.

Response

{
  "page": 0,
  "events": [
    {}
  ],
  "source": "<string>",
  "end_date": "<string>",
  "city_slug": "<string>",
  "next_page": 0,
  "start_date": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/c7399716-58a0-4122-8ef7-16e44a8254eb/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "c7399716-58a0-4122-8ef7-16e44a8254eb",
    "variables": {
        "city_slug": "new-york-ny",
        "page": 1,
        "start_date": "",
        "end_date": "",
        "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.

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

Call run(function_id="c7399716-58a0-4122-8ef7-16e44a8254eb") — the "get_city_upcoming_events" function, which returns one paginated page of upcoming live events from a city page on https://bandsintown.com. Uses the city pagination API when coordinates are available, otherwise falls back to JSON-LD event data..

It takes city_slug (str), page (int), start_date (str), end_date (str), timeout_seconds (int). Return the result as structured JSON.