Marketplace
No threads yet
Live

list_city_events

shotgun.live

Lists upcoming music events for a city from https://shotgun.live, with optional genre and start-date filters and zero-based pagination. Returns non-empty event fields including venue, date, pricing, artwork, and genre tags.

Parameters4
Runs13
Updated10d ago
Operational13 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 list_city_events?

Lists upcoming music events for a city from https://shotgun.live, with optional genre and start-date filters and zero-based pagination. Returns non-empty event fields including venue, date, pricing, artwork, and genre tags. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass city, genre, start_date, page and get the result back without maintaining a scraper.

Response

{
  "city": "<string>",
  "page": 0,
  "count": 0,
  "genre": "<string>",
  "events": [
    {}
  ],
  "has_more": true,
  "next_page": 0,
  "page_size": 0,
  "source_url": "<string>",
  "start_date": "<string>",
  "total_loaded": 0,
  "total_upcoming": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/4c2048d9-0a4d-49bf-acda-c541b30a99ec/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "4c2048d9-0a4d-49bf-acda-c541b30a99ec",
    "variables": {
        "city": "new-york",
        "genre": "",
        "start_date": "",
        "page": 0
    }
}'

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="4c2048d9-0a4d-49bf-acda-c541b30a99ec") — the "list_city_events" function, which lists upcoming music events for a city from https://shotgun.live, with optional genre and start-date filters and zero-based pagination. Returns non-empty event fields including venue, date, pricing, artwork, and genre tags..

It takes city (str), genre (str), start_date (str), page (int). Return the result as structured JSON.